ID: 31583
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: Date/time related
Operating System: N/A
PHP Version: Irrelevant
New Comment:
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),
Previous Comments:
------------------------------------------------------------------------
[2005-01-17 12:43:55] [EMAIL PROTECTED]
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
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=31583&edit=1