From f0bf3a5db8d0cf0a90e75d9f74316c228ed23e14 Mon Sep 17 00:00:00 2001 From: Henri-Damien LAURENT Date: Sun, 10 Feb 2008 01:41:51 -0600 Subject: [PATCH] BUG FIX : detailed page for supplier failed to get supplier information GetSupplier was split into two functions. Using GetSupplierFromId Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- acqui/supplier.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/supplier.pl b/acqui/supplier.pl index 5fb77088b8..4db98d6a36 100755 --- a/acqui/supplier.pl +++ b/acqui/supplier.pl @@ -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"; -- 2.20.1