From: Derick Rethans Date: Sun, 18 Dec 2005 16:06:28 +0000 (+0000) Subject: - Those should be lower case only. X-Git-Tag: RELEASE_1_0_4~331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=663bb230b9a147225130f242b77ccdfd24e10c3b;p=php - Those should be lower case only. --- diff --git a/ext/date/lib/parse_date.re b/ext/date/lib/parse_date.re index 98dbb216ea..c356386ec4 100644 --- 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?;