diff options
author | ivan <ivan> | 2004-01-21 00:04:07 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-01-21 00:04:07 +0000 |
commit | 0c0cb89fbf23c575cab2cac5519b6051288a7d3f (patch) | |
tree | efeb1e99a2de42bfebacad4afa2c41ebf39f0a7d /httemplate/search/cust_bill_event.cgi | |
parent | 790f80663a0ddcb4f2496bad4b2e0bfa80bc3210 (diff) |
don't include the _next_ day, just the full ending day
Diffstat (limited to 'httemplate/search/cust_bill_event.cgi')
-rw-r--r-- | httemplate/search/cust_bill_event.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_bill_event.cgi b/httemplate/search/cust_bill_event.cgi index b76f66b76..ec952ea5b 100644 --- a/httemplate/search/cust_bill_event.cgi +++ b/httemplate/search/cust_bill_event.cgi @@ -7,7 +7,7 @@ $cgi->param('beginning') =~ /^([ 0-9\-\/]{0,10})$/; my $beginning = str2time($1) || 0; $cgi->param('ending') =~ /^([ 0-9\-\/]{0,10})$/; -my $ending = str2time($1) + 86400; +my $ending = str2time($1) + 86399; my @cust_bill_event = sort { $a->_date <=> $b->_date } |