]> git.mxchange.org Git - friendica.git/commitdiff
bug #177 - birthday month on profile incorrect if October or later and no year
authorFriendika <info@friendika.com>
Mon, 10 Oct 2011 08:03:34 +0000 (01:03 -0700)
committerFriendika <info@friendika.com>
Mon, 10 Oct 2011 08:03:34 +0000 (01:03 -0700)
include/profile_advanced.php

index 22e035fe64758178de83b3bb47ef9ffa6560d227..41ad322b2c2e51fa29e6667aa397b5addb33c8f3 100644 (file)
@@ -48,7 +48,7 @@ $short_bd_format = t('j F');
 $o .= '<div id="advanced-profile-dob" class="advanced-profile-content">' 
        . ((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))) 
        . "</div>\r\n</div>";
 
 $o .= '<div id="advanced-profile-dob-end"></div>';