]> git.mxchange.org Git - friendica.git/blobdiff - include/profile_advanced.php
some zero theming on settings page
[friendica.git] / include / profile_advanced.php
index ccecb95dee7056b024c3698547c65d4d235084ec..8c2acd8e7639441573689a1efc3076af36ed274f 100644 (file)
@@ -2,7 +2,7 @@
 
 function advanced_profile(&$a) {
 
-       $o .= '';
+       $o = '';
 
        $o .= '<h2>' . t('Profile') . '</h2>';
 
@@ -25,8 +25,8 @@ function advanced_profile(&$a) {
                
                        $val = ((intval($a->profile['dob'])) 
                                ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00',$year_bd_format))
-                               : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],6) . ' 00:00 +00:00',$short_bd_format)));
-                       
+                               : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],5) . ' 00:00 +00:00',$short_bd_format)));
+
                        $profile['birthday'] = array( t('Birthday:'), $val);
 
                }
@@ -44,6 +44,8 @@ function advanced_profile(&$a) {
 
                if($a->profile['homepage']) $profile['homepage'] = array( t('Homepage:'), linkify($a->profile['homepage']) );
 
+               if($a->profile['pub_keywords']) $profile['pub_keywords'] = array( t('Tags:'), $a->profile['pub_keywords']);
+
                if($a->profile['politic']) $profile['politic'] = array( t('Political Views:'), $a->profile['politic']);
 
                if($a->profile['religion']) $profile['religion'] = array( t('Religion:'), $a->profile['religion']);
@@ -67,13 +69,12 @@ function advanced_profile(&$a) {
                if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt);
 
                if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt );
-       }
-
-               
-       return replace_macros($tpl, array(
-               '$title' => t('Profile'),
-               '$profile' => $profile,
-       ));
 
+        return replace_macros($tpl, array(
+            '$title' => t('Profile'),
+            '$profile' => $profile,
+        ));
+    }
 
+       return '';
 }