From: Domovoy Date: Mon, 10 Sep 2012 07:57:34 +0000 (+0200) Subject: Port friendica/friendica#4cd8233f61647d805383f5786052ef034cebf4e1 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7bef3023a8efd35f2cf05bfc07ab3f10c924af4a;p=friendica.git Port friendica/friendica#4cd8233f61647d805383f5786052ef034cebf4e1 --- diff --git a/object/Item.php b/object/Item.php index 51ad6562d1..314f95eaff 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,