From 3174847de80600be5e0bf32864edca79388d6433 Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 10 Oct 2011 01:03:34 -0700 Subject: [PATCH] bug #177 - birthday month on profile incorrect if October or later and no year --- include/profile_advanced.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 .= '
' . ((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))) . "
\r\n"; $o .= '
';