summaryrefslogtreecommitdiff
path: root/httemplate/search/cust_bill_event.cgi
diff options
context:
space:
mode:
authorivan <ivan>2004-01-21 00:04:11 +0000
committerivan <ivan>2004-01-21 00:04:11 +0000
commit5ca1810f3c087564cdb0a2c8bdf84b7c794b3ee3 (patch)
treeee946dda5155469ed53e7f97717b9fa76020ea7c /httemplate/search/cust_bill_event.cgi
parent896cb78458b05f0ddddd3129c53f5116260ccbe8 (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.cgi2
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 }