X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffollow.php;h=d17c874f69bcec5c8a9a5e8cc259a43f538de96d;hb=35973b9273df73b92b840634ff021deb501e4221;hp=b92a0d980fb57e1150214c07aee7e5b590277c05;hpb=dfa5183774e24fe2b1a355c9427372d4cd55ea70;p=friendica.git diff --git a/mod/follow.php b/mod/follow.php index b92a0d980f..d17c874f69 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -5,7 +5,7 @@ require_once('include/follow.php'); require_once('include/Contact.php'); require_once('include/contact_selectors.php'); -function follow_content(&$a) { +function follow_content(App &$a) { if(! local_user()) { notice( t('Permission denied.') . EOL); @@ -137,19 +137,19 @@ function follow_content(&$a) { $a->page['aside'] = ""; profile_load($a, "", 0, get_contact_details_by_url($ret["url"])); - // Show last public posts if ($gcontact_id <> 0) { $o .= replace_macros(get_markup_template('section_title.tpl'), array('$title' => t('Status Messages and Posts') )); - $o .= posts_from_gcontact($a, $gcontact_id); + // Show last public posts + $o .= posts_from_contact_url($a, $ret["url"]); } return $o; } -function follow_post(&$a) { +function follow_post(App &$a) { if(! local_user()) { notice( t('Permission denied.') . EOL);