From c903276aecdb49fc9228fbdb8d7cf9b2c078290b Mon Sep 17 00:00:00 2001 From: Paul POULAIN Date: Mon, 19 Nov 2007 18:55:27 +0100 Subject: [PATCH] bugfix : we need to give the booksellerid to the biblio search (otherwise, it will be empty, and a constraint will fail, making the input fail as well) Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- acqui/neworderbiblio.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/acqui/neworderbiblio.pl b/acqui/neworderbiblio.pl index b5cabfddb6..d38dd6bf43 100755 --- a/acqui/neworderbiblio.pl +++ b/acqui/neworderbiblio.pl @@ -110,6 +110,7 @@ for(my $i=0;$i<$hits;$i++) { #build the hash for the template. %resultsloop=%$biblio; $resultsloop{highlight} = ($i % 2)?(1):(0); + $resultsloop{booksellerid} = $booksellerid; push @results, \%resultsloop; } -- 2.11.0