From ea2dd33e30af5e69c546f4330a892bebcdaf0cfd 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 Signed-off-by: Jonathan Druart (cherry picked from commit 5400795a6651adc021801052fa0186747983b587) Signed-off-by: Fridolin Somers (cherry picked from commit d3f3512d3f480e3a7a36c3917e6748fef825d34f) Signed-off-by: Katrin Fischer --- C4/Accounts.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Accounts.pm b/C4/Accounts.pm index 96f0253130..73faef9975 100644 --- a/C4/Accounts.pm +++ b/C4/Accounts.pm @@ -390,7 +390,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.39.5