projects
/
php
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e5bd66
)
- Those should be lower case only.
author
Derick Rethans
<derick@php.net>
Sun, 18 Dec 2005 16:06:28 +0000
(16:06 +0000)
committer
Derick Rethans
<derick@php.net>
Sun, 18 Dec 2005 16:06:28 +0000
(16:06 +0000)
ext/date/lib/parse_date.re
patch
|
blob
|
history
diff --git
a/ext/date/lib/parse_date.re
b/ext/date/lib/parse_date.re
index 98dbb216ea2bd145546f07279859c62f8d84899b..c356386ec4213778ea13e6bc6a840691518fa204 100644
(file)
--- a/
ext/date/lib/parse_date.re
+++ b/
ext/date/lib/parse_date.re
@@
-736,7
+736,7
@@
meridian = [AaPp] "."? [Mm] "."?;
tz = "("? [A-Za-z]{1,4} ")"? | [A-Z][a-z]+([_/][A-Z][a-z]+)+;
tzcorrection = [+-] hour24 ":"? minutelz?;
-daysuf =
'st' | 'nd' | 'rd' | 'th'
;
+daysuf =
"st" | "nd" | "rd" | "th"
;
month = "0"? [0-9] | "1"[0-2];
day = ([0-2]?[0-9] | "3"[01]) daysuf?;