From 12b2104906db41d7286dde756bafd0a10c06ed9c Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@biblibre.com>
Date: Tue, 6 Jan 2015 09:27:16 +0100
Subject: [PATCH] Bug 11708: Fix bad resolution conflict with bug 12896

Signed-off-by: Paola Rossi <paola.rossi@cineca.it>
---
 acqui/basketgroup.pl |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/acqui/basketgroup.pl b/acqui/basketgroup.pl
index 23fe8d8..dce1e08 100755
--- a/acqui/basketgroup.pl
+++ b/acqui/basketgroup.pl
@@ -381,7 +381,7 @@ if ( $op eq "add" ) {
         push @booksellers, $bookseller;
         $template->param(booksellername => $booksellers[0]->{name});
     } else {
-        @booksellers = GetBookSeller('');
+        @booksellers = Koha::Acquisition::Bookseller->search;
     }
     foreach my $bookseller (@booksellers) {
         $bookseller->{basketgroups} = GetBasketgroups($bookseller->{id});
-- 
1.7.10.4