aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-04-04 11:52:30 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-04-04 11:52:30 +0200
commit7bfd0e2c488b63818abca612ec65fb73734755e1 (patch)
treef5a173b878eb5df66684b1ec0134f185134c7035 /boot.php
parent890753e5b545ca5777c6c9084e99cacf42a3b485 (diff)
downloadvolse-hubzilla-7bfd0e2c488b63818abca612ec65fb73734755e1.tar.gz
volse-hubzilla-7bfd0e2c488b63818abca612ec65fb73734755e1.tar.bz2
volse-hubzilla-7bfd0e2c488b63818abca612ec65fb73734755e1.zip
show "edit contact" and "sent PM" only to local user
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/boot.php b/boot.php
index 708d90901..3ede1cbc8 100644
--- a/boot.php
+++ b/boot.php
@@ -2694,8 +2694,10 @@ function item_photo_menu($item){
$status_link = $redirect_url."?url=status";
$profile_link = $redirect_url."?url=profile";
$photos_link = $redirect_url."?url=photos";
- $pm_url = $a->get_baseurl() . '/message/new/' . $item['cid'] ;
- $contact_url = $item['self']?"":$a->get_baseurl() . '/contacts/' . $item['cid'] ;
+ if (local_user()){
+ $pm_url = $a->get_baseurl() . '/message/new/' . $item['cid'];
+ $contact_url = $item['self']?"":$a->get_baseurl() . '/contacts/' . $item['cid'];
+ }
}
elseif(isset($a->authors[$item['author-link']])) {
$redirect_url = $a->get_baseurl() . '/redir/' . $a->authors[$item['author-link']]['id'];
@@ -2703,10 +2705,12 @@ function item_photo_menu($item){
$profile_link = $redirect_url."?url=profile";
$photos_link = $redirect_url."?url=photos";
- if ($a->authors[$item['author-link']]['network']==='dfrn'){
- $pm_url = $a->get_baseurl() . '/message/new/' . $a->authors[$item['author-link']]['id'];
+ if (local_user()){
+ if ($a->authors[$item['author-link']]['network']==='dfrn'){
+ $pm_url = $a->get_baseurl() . '/message/new/' . $a->authors[$item['author-link']]['id'];
+ }
+ $contact_url = $item['self']?"":$a->get_baseurl() . '/contacts/' . $a->authors[$item['author-link']]['id'] ;
}
- $contact_url = $item['self']?"":$a->get_baseurl() . '/contacts/' . $a->authors[$item['author-link']]['id'] ;
}
}