From 9f351b4a4df08d607aa0d647709b06cbea1c5ffe Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 9 Apr 2010 08:18:37 +0000 Subject: fix date parsing when using international dates (package date edit), RT#8027 --- httemplate/search/pay_batch.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'httemplate/search/pay_batch.cgi') diff --git a/httemplate/search/pay_batch.cgi b/httemplate/search/pay_batch.cgi index fb452870f..ebd323e13 100755 --- a/httemplate/search/pay_batch.cgi +++ b/httemplate/search/pay_batch.cgi @@ -97,12 +97,12 @@ my($begin, $end) = ( '', '' ); my @where; if ( $cgi->param('beginning') && $cgi->param('beginning') =~ /^([ 0-9\-\/]{0,10})$/ ) { - $begin = str2time($1); + $begin = parse_datetime($1); push @where, "download >= $begin"; } if ( $cgi->param('ending') && $cgi->param('ending') =~ /^([ 0-9\-\/]{0,10})$/ ) { - $end = str2time($1) + 86399; + $end = parse_datetime($1) + 86399; push @where, "download < $end"; } -- cgit v1.2.1