|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-01-17 12:43 UTC] mike@php.net
Description: ------------ http://cvs.php.net/co.php/php-src/ext/standard/datetime.c#999 should use day_long_names[] to be RFC850 compliant Expected result: ---------------- Sunday, 06-Nov-94 08:49:37 GMT Actual result: -------------- Sun, 06-Nov-94 08:49:37 GMT PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 08:00:02 2025 UTC |
Here's the patch against HEAD: --- php-src/ext/standard/datetime.c 12 Dec 2004 15:50:06 -0000 1.125 +++ php-src/ext/standard/datetime.c 17 Jan 2005 12:14:02 -0000 @@ -957,7 +957,7 @@ tm1->tm_hour, tm1->tm_min, tm1->tm_sec); } else { snprintf(str, 80, "%s, %02d-%s-%02d %02d:%02d:%02d GMT", - day_short_names[tm1->tm_wday], + day_full_names[tm1->tm_wday], tm1->tm_mday, mon_short_names[tm1->tm_mon], ((tm1->tm_year) % 100), ... and PHP4: --- php4/ext/standard/datetime.c 16 Dec 2004 00:10:55 -0000 1.96.2.17 +++ php4/ext/standard/datetime.c 17 Jan 2005 12:24:30 -0000 @@ -781,7 +781,7 @@ tm1->tm_hour, tm1->tm_min, tm1->tm_sec); } else { snprintf(str, 80, "%s, %02d-%s-%02d %02d:%02d:%02d GMT", - day_short_names[tm1->tm_wday], + day_full_names[tm1->tm_wday], tm1->tm_mday, mon_short_names[tm1->tm_mon], ((tm1->tm_year) % 100),