iliaa           Mon Nov 28 18:49:26 2005 EDT

  Added files:                 (Branch: PHP_5_1)
    /php-src/ext/date/tests     bug35422.phpt 

  Modified files:              
    /php-src    NEWS 
    /php-src/ext/date/lib       timezonemap.h 
  Log:
  Fixed bug #35422 (strtotime() does not parse times with UTC as timezone).
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.2027.2.242&r2=1.2027.2.243&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.242 php-src/NEWS:1.2027.2.243
--- php-src/NEWS:1.2027.2.242   Mon Nov 28 17:23:49 2005
+++ php-src/NEWS        Mon Nov 28 18:49:20 2005
@@ -4,6 +4,8 @@
 - Fixed bug #35456 (+ 1 [time unit] format did not work). (Ilia)
 - Fixed bug #35431 (PDO crashes when using LAZY fetch with fetchAll). (Wez)
 - Fixed bug #35430 (PDO crashes on incorrect FETCH_FUNC use). (Tony)
+- Fixed bug #35422 (strtotime() does not parse times with UTC as timezone).
+  (Ilia)
 - Fixed bug #35409 (undefined reference to 'rl_completion_matches'). (Jani)
 - Fixed bug #35399 (Since fix of bug #35273 SOAP decoding of
   soapenc:base64binary fails). (Dmitry)
http://cvs.php.net/diff.php/php-src/ext/date/lib/timezonemap.h?r1=1.1.2.3&r2=1.1.2.4&ty=u
Index: php-src/ext/date/lib/timezonemap.h
diff -u php-src/ext/date/lib/timezonemap.h:1.1.2.3 
php-src/ext/date/lib/timezonemap.h:1.1.2.4
--- php-src/ext/date/lib/timezonemap.h:1.1.2.3  Thu Nov 17 08:04:29 2005
+++ php-src/ext/date/lib/timezonemap.h  Mon Nov 28 18:49:25 2005
@@ -885,6 +885,7 @@
        { "gmt",   0,      0, "GB"                            },
        { "gmt",   0,      0, "GB-Eire"                       },
        { "gmt",   0,      0, "GMT"                           },
+       { "utc",   0,      0, "UTC"                           },
        { "gmt",   0,      0, "Iceland"                       },
        { "gst",   0,  14400, "Asia/Dubai"                    },
        { "gst",   0,  14400, "Asia/Bahrain"                  },

http://cvs.php.net/co.php/php-src/ext/date/tests/bug35422.phpt?r=1.1&p=1
Index: php-src/ext/date/tests/bug35422.phpt
+++ php-src/ext/date/tests/bug35422.phpt

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to