]> git.mxchange.org Git - friendica.git/commitdiff
add poke to contact photo menu
authorfriendica <info@friendica.com>
Fri, 20 Jul 2012 04:03:31 +0000 (21:03 -0700)
committerfriendica <info@friendica.com>
Fri, 20 Jul 2012 04:03:31 +0000 (21:03 -0700)
include/Contact.php

index 14e1a52cddfdb3400cc6cf54f9ce3821432f38e4..ecc271a8e0bf6242b99c33fbb613b8fe3ac6673a 100644 (file)
@@ -192,6 +192,7 @@ function contact_photo_menu($contact) {
        $status_link="";
        $photos_link="";
        $posts_link="";
+       $poke_link="";
 
        $sparkle = false;
        if($contact['network'] === NETWORK_DFRN) {
@@ -211,10 +212,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,