diff options
author | Derick Rethans <derick@php.net> | 2005-10-19 21:08:35 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2005-10-19 21:08:35 +0000 |
commit | 719e78c78f17974d2db25ba5947c92a14a417cb8 (patch) | |
tree | 812e0aad52a4d6caa267e0cf428c53db617bb55a /ext/date/lib/timelib_structs.h | |
parent | 382bc9d0e41661473d68b97bc0f72e49dd3c4c53 (diff) | |
download | php-git-719e78c78f17974d2db25ba5947c92a14a417cb8.tar.gz |
- Fixed bug #34874 and #33546 (Problems with lone daynames).
Diffstat (limited to 'ext/date/lib/timelib_structs.h')
-rw-r--r-- | ext/date/lib/timelib_structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/date/lib/timelib_structs.h b/ext/date/lib/timelib_structs.h index 7a46c6573c..317709336c 100644 --- a/ext/date/lib/timelib_structs.h +++ b/ext/date/lib/timelib_structs.h @@ -114,6 +114,7 @@ typedef struct timelib_rel_time { timelib_sll h, i, s; /* Hours, mInutes and Seconds */ int weekday; /* Stores the day in 'next monday' */ + int weekday_behavior; /* 0: the current day should *not* be counted when advancing forwards; 1: the current day *should* be counted */ } timelib_rel_time; typedef struct timelib_time_offset { |