mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
Fixed bug #45543: DateTime::setTimezone can not set timezones without ID.
This commit is contained in:
parent
4e308abf28
commit
22dba2f5f3
6 changed files with 84 additions and 12 deletions
|
@ -172,6 +172,12 @@ typedef struct timelib_time {
|
|||
* 2 TimeZone abbreviation */
|
||||
} timelib_time;
|
||||
|
||||
typedef struct timelib_abbr_info {
|
||||
timelib_sll utc_offset;
|
||||
char *abbr;
|
||||
int dst;
|
||||
} timelib_abbr_info;
|
||||
|
||||
typedef struct timelib_error_message {
|
||||
int position;
|
||||
char character;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue