derick          Fri Feb 22 09:48:18 2008 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/date/lib       timelib.h 
    /php-src    NEWS 
  Log:
  - MFH: Fixed bug #44209: strtotime doesn't support 64 bit timestamps.
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/date/lib/timelib.h?r1=1.10.2.11.2.4&r2=1.10.2.11.2.5&diff_format=u
Index: php-src/ext/date/lib/timelib.h
diff -u php-src/ext/date/lib/timelib.h:1.10.2.11.2.4 
php-src/ext/date/lib/timelib.h:1.10.2.11.2.5
--- php-src/ext/date/lib/timelib.h:1.10.2.11.2.4        Mon Dec 31 07:20:05 2007
+++ php-src/ext/date/lib/timelib.h      Fri Feb 22 09:48:18 2008
@@ -16,12 +16,15 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: timelib.h,v 1.10.2.11.2.4 2007/12/31 07:20:05 sebastian Exp $ */
+/* $Id: timelib.h,v 1.10.2.11.2.5 2008/02/22 09:48:18 derick Exp $ */
 
 #ifndef __TIMELIB_H__
 #define __TIMELIB_H__
 
 #include "timelib_structs.h"
+#if HAVE_LIMITS_H
+#include <limits.h>
+#endif
 
 #define TIMELIB_NONE             0x00
 #define TIMELIB_OVERRIDE_TIME    0x01
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.1092&r2=1.2027.2.547.2.1093&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.1092 php-src/NEWS:1.2027.2.547.2.1093
--- php-src/NEWS:1.2027.2.547.2.1092    Thu Feb 21 15:14:12 2008
+++ php-src/NEWS        Fri Feb 22 09:48:18 2008
@@ -11,6 +11,8 @@
 - Upgraded PCRE to version 7.6 (Nuno)
 
 
+- Fixed bug #44209 (strtotime() doesn't support 64 bit timestamps on 64 bit
+  platforms). (Derick)
 - Fixed bug #44197 (socket array keys lost on socket_select). (Felipe)
 - Fixed bug #44191 (preg_grep messes up array index). (Felipe)
 - Fixed bug #44189 (PDO setAttribute() does not properly validate values for 

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

Reply via email to