]> granicus.if.org Git - php/commitdiff
- Fixed bug #44257 (timelib_tz_lookup_table must use float for gmtoffset).
authorDerick Rethans <derick@php.net>
Thu, 13 Mar 2008 15:59:48 +0000 (15:59 +0000)
committerDerick Rethans <derick@php.net>
Thu, 13 Mar 2008 15:59:48 +0000 (15:59 +0000)
NEWS
ext/date/lib/timelib_structs.h

diff --git a/NEWS b/NEWS
index 66f96e77e317a4dbf466d179439e5b0088207f79..27c5251c780360e7a47c780135ee289a50546242 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -132,6 +132,8 @@ PHP                                                                        NEWS
 - 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
index c24f6ee74d06d6cf9211132052312c9b9cca745d..4d6ed12a7fb3341c276e8ed3d2ba397ad577289f 100644 (file)
@@ -178,7 +178,7 @@ typedef struct timelib_error_container {
 typedef struct _timelib_tz_lookup_table {
        char       *name;
        int         type;
-       int         gmtoffset;
+       float       gmtoffset;
        char       *full_tz_name;
 } timelib_tz_lookup_table;