derick          Sun Dec 18 16:06:28 2005 EDT

  Modified files:              
    /php-src/ext/date/lib       parse_date.re 
  Log:
  - Those should be lower case only.
  
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/date/lib/parse_date.re?r1=1.42&r2=1.43&diff_format=u
Index: php-src/ext/date/lib/parse_date.re
diff -u php-src/ext/date/lib/parse_date.re:1.42 
php-src/ext/date/lib/parse_date.re:1.43
--- php-src/ext/date/lib/parse_date.re:1.42     Fri Dec 16 22:40:09 2005
+++ php-src/ext/date/lib/parse_date.re  Sun Dec 18 16:06:28 2005
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: parse_date.re,v 1.42 2005/12/16 22:40:09 iliaa Exp $ */
+/* $Id: parse_date.re,v 1.43 2005/12/18 16:06:28 derick Exp $ */
 
 #include "timelib.h"
 
@@ -736,7 +736,7 @@
 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?;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to