summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--FS/FS/UI/Web.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm
index 85b85081a..18e841e83 100644
--- a/FS/FS/UI/Web.pm
+++ b/FS/FS/UI/Web.pm
@@ -24,7 +24,7 @@ sub parse_beginning_ending {
$ending = $1 - 1;
} elsif ( $cgi->param('ending') =~ /^([ 0-9\-\/]{1,64})$/ ) {
#probably need an option to turn off the + 86399
- my $ending = str2time($1) + 86399;
+ $ending = str2time($1) + 86399;
}
( $beginning, $ending );