diff options
author | friendica <info@friendica.com> | 2012-07-19 21:09:40 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-19 21:09:40 -0700 |
commit | bf386749047731d3a7f47fd99f7dcc4e93ed7be7 (patch) | |
tree | 49168f1e7d3ca11f0b3622ca9129904af15608bf /include/Contact.php | |
parent | 6293c5e1cf53eeb6db487c74c6e4cec8a11148d4 (diff) | |
download | volse-hubzilla-bf386749047731d3a7f47fd99f7dcc4e93ed7be7.tar.gz volse-hubzilla-bf386749047731d3a7f47fd99f7dcc4e93ed7be7.tar.bz2 volse-hubzilla-bf386749047731d3a7f47fd99f7dcc4e93ed7be7.zip |
sync
Diffstat (limited to 'include/Contact.php')
-rw-r--r-- | include/Contact.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Contact.php b/include/Contact.php index 4e902be4f..9a6c64693 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -188,6 +188,7 @@ function contact_photo_menu($contact) { $status_link=""; $photos_link=""; $posts_link=""; + $poke_link=""; $sparkle = false; if($contact['network'] === NETWORK_DFRN) { @@ -207,10 +208,12 @@ function contact_photo_menu($contact) { $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id']; } + $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id']; $contact_url = $a->get_baseurl() . '/contacts/' . $contact['id']; $posts_link = $a->get_baseurl() . '/network/?cid=' . $contact['id']; $menu = Array( + t("Poke") => $poke_link, t("View Status") => $status_link, t("View Profile") => $profile_link, t("View Photos") => $photos_link, |