From 133d38be2026a40bf9dd94e69762fdc34c34a389 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 00:19:58 +0200 Subject: [PATCH] Rearranged the contact menu so that it fits the menu at the conversations. --- include/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Contact.php b/include/Contact.php index b0fdcbfb8a..e6ec8daade 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -233,7 +233,6 @@ function contact_photo_menu($contact) { $menu = Array( - 'poke' => array(t("Poke"), $poke_link), 'status' => array(t("View Status"), $status_link), 'profile' => array(t("View Profile"), $profile_link), 'photos' => array(t("View Photos"), $photos_link), @@ -241,6 +240,7 @@ function contact_photo_menu($contact) { 'edit' => array(t("Edit Contact"), $contact_url), 'drop' => array(t("Drop Contact"), $contact_drop_link), 'pm' => array(t("Send PM"), $pm_url), + 'poke' => array(t("Poke"), $poke_link), );