From 88425aabdbb2b8cdacb88f8c6eb6e09bfe69b507 Mon Sep 17 00:00:00 2001
From: Dominic Pichette <dominic@inlibro.com>
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 <dominic@inlibro.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
---
 C4/Accounts.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/C4/Accounts.pm b/C4/Accounts.pm
index c7b8191742..0a1e779632 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.11.0