From 9f804b936a23c6c28307968c755eb920c26048cc Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 4 Apr 2011 03:31:47 -0700 Subject: [PATCH] remote profile photo menu fix --- boot.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 3ede1cbc82..f1db7a349f 100644 --- a/boot.php +++ b/boot.php @@ -2694,7 +2694,7 @@ function item_photo_menu($item){ $status_link = $redirect_url."?url=status"; $profile_link = $redirect_url."?url=profile"; $photos_link = $redirect_url."?url=photos"; - if (local_user()){ + if (local_user() && (! link_compare($_SESSION['my_url'],$item['author-link']))) { $pm_url = $a->get_baseurl() . '/message/new/' . $item['cid']; $contact_url = $item['self']?"":$a->get_baseurl() . '/contacts/' . $item['cid']; } @@ -2705,7 +2705,7 @@ function item_photo_menu($item){ $profile_link = $redirect_url."?url=profile"; $photos_link = $redirect_url."?url=photos"; - if (local_user()){ + if (local_user() && (! link_compare($_SESSION['my_url'],$a->authors[$item['author-link']]['url']))) { if ($a->authors[$item['author-link']]['network']==='dfrn'){ $pm_url = $a->get_baseurl() . '/message/new/' . $a->authors[$item['author-link']]['id']; }