]> git.mxchange.org Git - friendica.git/blobdiff - mod/common.php
Hide some profile data if not connected.
[friendica.git] / mod / common.php
index a4320f9eb9cf4f944b9ffdb69ba5698be2a2fb4c..3118d124790938116b8fb4dc4ffce06d5b55e8c0 100644 (file)
@@ -29,19 +29,21 @@ function common_content(&$a) {
        }       
 
        $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array(
-                '$name' => $c[0]['name'],
-                '$photo' => $c[0]['photo'],
-                'url' => z_root() . '/contacts/' . $cid
-                ));
+               '$name' => $c[0]['name'],
+               '$photo' => $c[0]['photo'],
+               'url' => z_root() . '/contacts/' . $cid
+       ));
 
-        if(! x($a->page,'aside'))
-                $a->page['aside'] = '';
-        $a->page['aside'] .= $vcard_widget;
+       if(! x($a->page,'aside'))
+               $a->page['aside'] = '';
+       $a->page['aside'] .= $vcard_widget;
 
        if(! count($c))
                return;
 
-       $o .= '<h2>' . t('Common Friends') . '</h2>';
+       $o .= replace_macros(get_markup_template("section_title.tpl"),array(
+               '$title' => t('Common Friends')
+       ));
 
 
        if(! $cid) {