diff options
author | Friendika <info@friendika.com> | 2011-04-19 20:50:02 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-19 20:50:02 -0700 |
commit | d874a55178cce01195b23296bbae6365807dc300 (patch) | |
tree | 9360b27c28d33dae9a3d5dd5b263408d2576d00c /include | |
parent | 29a48de5e29841f46791d42d6e329898688914fe (diff) | |
download | volse-hubzilla-d874a55178cce01195b23296bbae6365807dc300.tar.gz volse-hubzilla-d874a55178cce01195b23296bbae6365807dc300.tar.bz2 volse-hubzilla-d874a55178cce01195b23296bbae6365807dc300.zip |
per contact network page (link in photo menu)
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 3ec0706e9..5cdcfca8c 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -533,6 +533,7 @@ function item_photo_menu($item){ $status_link=""; $photo_link=""; + $posts_link=""; $profile_link = ((strlen($item['author-link'])) ? $item['author-link'] : $item['url']); $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ; @@ -564,6 +565,7 @@ function item_photo_menu($item){ if((isset($cid)) && (! $item['self'])) { $contact_url = $a->get_baseurl() . '/contacts/' . $cid; + $posts_link = $a->get_baseurl() . '/network/?cid=' . $cid; if($item['network'] === 'dfrn') { $status_link = $redir . "?url=status"; $profile_link = $redir . "?url=profile"; @@ -577,7 +579,8 @@ function item_photo_menu($item){ $menu = Array( t("View status") => $status_link, t("View profile") => $profile_link, - t("View photos") => $photos_link, + t("View photos") => $photos_link, + t("View recent") => $posts_link, t("Edit contact") => $contact_url, t("Send PM") => $pm_url, ); |