diff options
author | friendica <info@friendica.com> | 2012-04-15 06:34:01 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-15 06:34:01 -0700 |
commit | f994f9abc6092106659a29f5ee1be0706825c203 (patch) | |
tree | b46fd0ff7d5ab33afe79dc065097a56d78efe250 /include | |
parent | c4e8ef330e54ac149d333b92cf732099e828f40d (diff) | |
download | volse-hubzilla-f994f9abc6092106659a29f5ee1be0706825c203.tar.gz volse-hubzilla-f994f9abc6092106659a29f5ee1be0706825c203.tar.bz2 volse-hubzilla-f994f9abc6092106659a29f5ee1be0706825c203.zip |
open contact edit in same window
Diffstat (limited to 'include')
-rw-r--r-- | include/Contact.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Contact.php b/include/Contact.php index 388819b01..9ba1e8ae5 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -158,7 +158,7 @@ function contact_photo_menu($contact) { $o = ""; foreach($menu as $k=>$v){ if ($v!="") { - if(($k !== t("Network Posts")) && ($k !== t("Send PM"))) + if(($k !== t("Network Posts")) && ($k !== t("Send PM")) && ($k !== t('Edit Contact'))) $o .= "<li><a target=\"redir\" href=\"$v\">$k</a></li>\n"; else $o .= "<li><a href=\"$v\">$k</a></li>\n"; |