diff options
author | Friendika <info@friendika.com> | 2011-04-04 03:31:47 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-04 03:31:47 -0700 |
commit | 9f804b936a23c6c28307968c755eb920c26048cc (patch) | |
tree | 46c278f2f5995c5288bc4823de52e934e05e17fd | |
parent | 4922fddff9ead51617d540347b92ac830e23c80f (diff) | |
download | volse-hubzilla-9f804b936a23c6c28307968c755eb920c26048cc.tar.gz volse-hubzilla-9f804b936a23c6c28307968c755eb920c26048cc.tar.bz2 volse-hubzilla-9f804b936a23c6c28307968c755eb920c26048cc.zip |
remote profile photo menu fix
-rw-r--r-- | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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']; } |