From: Paul Poulain <[email protected]>

---
 serials/acqui-search.pl |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/serials/acqui-search.pl b/serials/acqui-search.pl
index 7461a8a..e16f5d7 100755
--- a/serials/acqui-search.pl
+++ b/serials/acqui-search.pl
@@ -22,7 +22,6 @@ use strict;
 use CGI;
 use C4::Auth;
 use C4::Output;
-use C4::Bookfund;
 
 my $query = new CGI;
 
@@ -44,7 +43,7 @@ my $sthtemp =
     "Select flags, branchcode from borrowers where borrowernumber = ?");
 $sthtemp->execute($loggedinuser);
 my ( $flags, $homebranch ) = $sthtemp->fetchrow;
-my @results = GetBookFunds($homebranch);
+my @results = GetBookFunds(1, $homebranch);
 my $count   = scalar(@results);
 
 my $classlist   = '';
-- 
1.6.0.4

_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha.org/mailman/listinfo/koha-patches

Reply via email to