diff options
author | Friendika <info@friendika.com> | 2011-10-10 01:03:34 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-10 01:03:34 -0700 |
commit | 3174847de80600be5e0bf32864edca79388d6433 (patch) | |
tree | f2f72fa403430887ba3466bd2146e32020e30aaf | |
parent | 077726a193809bed5b1433713b69ce985e177925 (diff) | |
download | volse-hubzilla-3174847de80600be5e0bf32864edca79388d6433.tar.gz volse-hubzilla-3174847de80600be5e0bf32864edca79388d6433.tar.bz2 volse-hubzilla-3174847de80600be5e0bf32864edca79388d6433.zip |
bug #177 - birthday month on profile incorrect if October or later and no year
-rw-r--r-- | include/profile_advanced.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/profile_advanced.php b/include/profile_advanced.php index 22e035fe6..41ad322b2 100644 --- a/include/profile_advanced.php +++ b/include/profile_advanced.php @@ -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>'; |