From: foobar Date: Fri, 4 Feb 2005 13:08:56 +0000 (+0000) Subject: - Fixed bug #31842 (*date('r') does not return RFC2822 conforming date string). X-Git-Tag: RELEASE_0_2~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b61a63d00875ffa9c59994c928a0606de1627714;p=php - Fixed bug #31842 (*date('r') does not return RFC2822 conforming date string). --- diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c index b327c346c2..2a6050e5fd 100644 --- a/ext/standard/datetime.c +++ b/ext/standard/datetime.c @@ -586,7 +586,7 @@ static void php_date(INTERNAL_FUNCTION_PARAMETERS, int gm) break; case 'r': #if HAVE_TM_GMTOFF - sprintf(tmp_buff, "%3s, %2d %3s %04d %02d:%02d:%02d %c%02d%02d", + sprintf(tmp_buff, "%3s, %02d %3s %04d %02d:%02d:%02d %c%02d%02d", day_short_names[ta->tm_wday], ta->tm_mday, mon_short_names[ta->tm_mon], @@ -599,7 +599,7 @@ static void php_date(INTERNAL_FUNCTION_PARAMETERS, int gm) abs( (ta->tm_gmtoff % 3600) / 60 ) ); #else - sprintf(tmp_buff, "%3s, %2d %3s %04d %02d:%02d:%02d %c%02d%02d", + sprintf(tmp_buff, "%3s, %02d %3s %04d %02d:%02d:%02d %c%02d%02d", day_short_names[ta->tm_wday], ta->tm_mday, mon_short_names[ta->tm_mon],