]> git.mxchange.org Git - friendica.git/blobdiff - mod/follow.php
Removed commented code
[friendica.git] / mod / follow.php
index a8fdc31b5a2fd5775570fe8a0e21dc91ff0ab594..1f56caea5094451ecf1add9ec80d10b0373b9110 100644 (file)
@@ -5,7 +5,6 @@ require_once('include/follow.php');
 require_once('include/Contact.php');
 require_once('include/contact_selectors.php');
 
-if(! function_exists('follow_content')) {
 function follow_content(&$a) {
 
        if(! local_user()) {
@@ -138,20 +137,18 @@ 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;
 }
-}
 
-if(! function_exists('follow_post')) {
 function follow_post(&$a) {
 
        if(! local_user()) {
@@ -188,4 +185,3 @@ function follow_post(&$a) {
        goaway($return_url);
        // NOTREACHED
 }
-}