From: Paul POULAIN Date: Mon, 19 Nov 2007 17:55:27 +0000 (+0100) Subject: bugfix : we need to give the booksellerid to the biblio search X-Git-Tag: v3.00.00-alpha~807 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=c903276aecdb49fc9228fbdb8d7cf9b2c078290b;p=koha_gimpoz 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 --- 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; }