add ability to follow somebody not already in your connections from "post actions" dropdown. bug: doesn't bring you back to this page.

This commit is contained in:
friendica 2014-08-17 21:34:52 -07:00
parent cb027232ff
commit 3dbc3e263d

View File

@ -902,6 +902,7 @@ function item_photo_menu($item){
$contact_url=""; $contact_url="";
$pm_url=""; $pm_url="";
$vsrc_link = ""; $vsrc_link = "";
$follow_url = "";
if(local_user()) { if(local_user()) {
$ssl_state = true; $ssl_state = true;
@ -923,6 +924,9 @@ function item_photo_menu($item){
if($a->contacts && array_key_exists($item['author_xchan'],$a->contacts)) if($a->contacts && array_key_exists($item['author_xchan'],$a->contacts))
$contact = $a->contacts[$item['author_xchan']]; $contact = $a->contacts[$item['author_xchan']];
else
if(local_user() && $item['author']['xchan_addr'])
$follow_url = z_root() . '/follow/?f=&url=' . $item['author']['xchan_addr'];
if($contact) { if($contact) {
$poke_link = $a->get_baseurl($ssl_state) . '/poke/?f=&c=' . $contact['abook_id']; $poke_link = $a->get_baseurl($ssl_state) . '/poke/?f=&c=' . $contact['abook_id'];
@ -940,6 +944,7 @@ function item_photo_menu($item){
t("View Profile") => $profile_link, t("View Profile") => $profile_link,
t("View Photos") => $photos_link, t("View Photos") => $photos_link,
t("Matrix Activity") => $posts_link, t("Matrix Activity") => $posts_link,
t("Follow") => $follow_url,
t("Edit Contact") => $contact_url, t("Edit Contact") => $contact_url,
t("Send PM") => $pm_url, t("Send PM") => $pm_url,
t("Poke") => $poke_link t("Poke") => $poke_link