From 7bef3023a8efd35f2cf05bfc07ab3f10c924af4a Mon Sep 17 00:00:00 2001 From: Domovoy Date: Mon, 10 Sep 2012 09:57:34 +0200 Subject: [PATCH] Port friendica/friendica#4cd8233f61647d805383f5786052ef034cebf4e1 --- object/Item.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/object/Item.php b/object/Item.php index 51ad6562d..314f95eaf 100644 --- a/object/Item.php +++ b/object/Item.php @@ -96,8 +96,16 @@ class Item extends BaseObject { $edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit")); else $edpost = false; - if((intval($item['contact-id']) && $item['contact-id'] == remote_user()) || ($item['uid'] == local_user())) + if($this->get_data_value('uid') == local_user()) $dropping = true; + elseif(is_array($_SESSION['remote'])) { + foreach($_SESSION['remote'] as $visitor) { + if($visitor['cid'] == $this->get_data_value('contact-id')) { + $dropping = true; + break; + } + } + } $drop = array( 'dropping' => $dropping,