Skip to content

Commit

Permalink
- MFH: Fixed bug #44209: strtotime doesn't support 64 bit timestamps.
Browse files Browse the repository at this point in the history
  • Loading branch information
Derick Rethans committed Feb 22, 2008
1 parent 6dc4795 commit dfd8f3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NEWS
Expand Up @@ -11,6 +11,8 @@ PHP NEWS
- 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
Expand Down
3 changes: 3 additions & 0 deletions ext/date/lib/timelib.h
Expand Up @@ -22,6 +22,9 @@
#define __TIMELIB_H__

#include "timelib_structs.h"
#if HAVE_LIMITS_H
#include <limits.h>
#endif

#define TIMELIB_NONE 0x00
#define TIMELIB_OVERRIDE_TIME 0x01
Expand Down

0 comments on commit dfd8f3f

Please sign in to comment.