stas 2004/04/19 17:25:54
Modified: t/response/TestApache util.pm
Log:
relax the regex, in german %a (the week of the day) uses only 2 letters
Submitted by: Boris Zentner <[EMAIL PROTECTED]>
Revision Changes Path
1.3 +1 -1 modperl-2.0/t/response/TestApache/util.pm
Index: util.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/t/response/TestApache/util.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -u -r1.2 -r1.3
--- util.pm 16 Mar 2004 19:46:13 -0000 1.2
+++ util.pm 20 Apr 2004 00:25:54 -0000 1.3
@@ -55,7 +55,7 @@
Apache::OK;
}
-my $fmtdate_ptn = qr/^\w\w\w, \d\d \w\w\w \d\d\d\d \d\d:\d\d:\d\d/;
+my $fmtdate_ptn = qr/^\w+, \d\d \w+ \d\d\d\d \d\d:\d\d:\d\d/;
sub time_cmp {
my($time, $fmtdate, $comment, $exact_match) = @_;