From 0884d82a964e03cbdf45a8824298496a835c7476 Mon Sep 17 00:00:00 2001 From: Dominic Pichette Date: Tue, 12 Sep 2017 10:13:58 -0400 Subject: [PATCH] Bug 18584 - removed white space in C4/Accounts.pm Test Plan: 1-go to C4/Accounts.pm 2-there should not be a trailing space at line 279. Signed-off-by: Dominic Pichette --- C4/Accounts.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Accounts.pm b/C4/Accounts.pm index c7b8191..0a1e779 100644 --- a/C4/Accounts.pm +++ b/C4/Accounts.pm @@ -276,7 +276,7 @@ sub getcredits { AND timestamp >=TIMESTAMP(?) AND timestamp < TIMESTAMP(?)" ); - $sth->execute( $date, $date2 ); + $sth->execute( $date, $date2 ); my @results; while ( my $data = $sth->fetchrow_hashref ) { $data->{'date'} = $data->{'timestamp'}; -- 2.7.4