summaryrefslogtreecommitdiff
path: root/httemplate/search/elements/cust_main_dayranges.html
diff options
context:
space:
mode:
authorivan <ivan>2010-04-09 08:18:24 +0000
committerivan <ivan>2010-04-09 08:18:24 +0000
commit2ab068f449eb97a10e18d20e9dab5ab9faa017e7 (patch)
treef1464912b3f3072cbb4290cfa2a4a26e32165676 /httemplate/search/elements/cust_main_dayranges.html
parent4125a128eaa40c751c89a69c2f9888463a78c6f3 (diff)
fix date parsing when using international dates (package date edit), RT#8027
Diffstat (limited to 'httemplate/search/elements/cust_main_dayranges.html')
-rw-r--r--httemplate/search/elements/cust_main_dayranges.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/elements/cust_main_dayranges.html b/httemplate/search/elements/cust_main_dayranges.html
index 9e4e86f9c..b3f1a2ef6 100644
--- a/httemplate/search/elements/cust_main_dayranges.html
+++ b/httemplate/search/elements/cust_main_dayranges.html
@@ -110,7 +110,7 @@ my $range_sub = delete($opt{'range_sub'}); #or die
my $offset = 0;
if($cgi->param('as_of')) {
- $offset = int((time - str2time($cgi->param('as_of'))) / 86400);
+ $offset = int((time - parse_datetime($cgi->param('as_of'))) / 86400);
$opt{'title'} .= ' ('.$cgi->param('as_of').')' if $offset > 0;
}