derick Thu Mar 13 15:59:49 2008 UTC
Modified files: (Branch: PHP_5_3)
/php-src NEWS
/php-src/ext/date/lib timelib_structs.h
Log:
- Fixed bug #44257 (timelib_tz_lookup_table must use float for gmtoffset).
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.965.2.139&r2=1.2027.2.547.2.965.2.140&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.965.2.139
php-src/NEWS:1.2027.2.547.2.965.2.140
--- php-src/NEWS:1.2027.2.547.2.965.2.139 Thu Mar 13 15:54:09 2008
+++ php-src/NEWS Thu Mar 13 15:59:48 2008
@@ -132,6 +132,8 @@
- Fixed bug #44414 (Incomplete reporting about abstract methods). (Dmitry)
- Fixed bug #44336 (Improve pcre UTF-8 string matching performance).
(frode at coretrek dot com, Nuno)
+- Fixed bug #44257 (timelib_tz_lookup_table must use float for gmtoffset).
+ (Derick, iuri dot fiedoruk at hp dot com).
- Fixed bug #44214 (Crash using preg_replace_callback() and global variable).
(Nuno, Scott)
- Fixed bug #43960 (strtotime() returns timestamp in the future when given a
http://cvs.php.net/viewvc.cgi/php-src/ext/date/lib/timelib_structs.h?r1=1.13.2.6.2.3.2.2&r2=1.13.2.6.2.3.2.3&diff_format=u
Index: php-src/ext/date/lib/timelib_structs.h
diff -u php-src/ext/date/lib/timelib_structs.h:1.13.2.6.2.3.2.2
php-src/ext/date/lib/timelib_structs.h:1.13.2.6.2.3.2.3
--- php-src/ext/date/lib/timelib_structs.h:1.13.2.6.2.3.2.2 Sun Feb 3
14:15:07 2008
+++ php-src/ext/date/lib/timelib_structs.h Thu Mar 13 15:59:48 2008
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: timelib_structs.h,v 1.13.2.6.2.3.2.2 2008/02/03 14:15:07 derick Exp $
*/
+/* $Id: timelib_structs.h,v 1.13.2.6.2.3.2.3 2008/03/13 15:59:48 derick Exp $
*/
#ifndef __TIMELIB_STRUCTS_H__
#define __TIMELIB_STRUCTS_H__
@@ -178,7 +178,7 @@
typedef struct _timelib_tz_lookup_table {
char *name;
int type;
- int gmtoffset;
+ float gmtoffset;
char *full_tz_name;
} timelib_tz_lookup_table;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php