From 015050cfb0f32ca71614af320be4d450b34da5c8 Mon Sep 17 00:00:00 2001 From: oleonard Date: Thu, 14 Apr 2005 21:21:08 +0000 Subject: [PATCH] The link back to the supplier comes up with no supplier id in the URL, so I'm guessing $input->param('supplierid') needs to be changed to $input->param('id'). --- acqui/recieveorder.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/recieveorder.pl b/acqui/recieveorder.pl index 024c4f8d2f..1c5f84c59a 100755 --- a/acqui/recieveorder.pl +++ b/acqui/recieveorder.pl @@ -32,7 +32,7 @@ use HTML::Template; use C4::Acquisition; my $input=new CGI; -my $supplierid=$input->param('supplierid'); +my $supplierid=$input->param('id'); my ($count,@booksellers)=bookseller($supplierid); my ($template, $loggedinuser, $cookie) -- 2.39.5