BUG FIX : detailed page for supplier failed to get supplier information
authorHenri-Damien LAURENT <henridamien@koha-fr.org>
Sun, 10 Feb 2008 07:41:51 +0000 (01:41 -0600)
committerJoshua Ferraro <jmf@liblime.com>
Mon, 11 Feb 2008 21:31:15 +0000 (15:31 -0600)
GetSupplier was split into two functions.
Using GetSupplierFromId

Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
acqui/supplier.pl

index 5fb7708..4db98d6 100755 (executable)
@@ -53,7 +53,7 @@ use C4::Bookfund;
 
 my $query=new CGI;
 my $id=$query->param('supplierid');
-my @booksellers = GetBookSeller($id) if $id;
+my @booksellers = GetBookSellerFromId($id) if $id;
 my $count = scalar @booksellers;
 my $op=$query->param('op') || "display";