From eada522a36c8778e775c51df101f11f0a41f4ac0 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 22 Apr 2015 09:55:55 +0200 Subject: [PATCH] [PASSED QA] Bug 13482: Sent biblionumber to the template The biblionumber is sent to the template as 'itembiblionumber' at 1 place, the template get the 'biblionumber' variable. I don't understand why but the easy way is to sent the variable twice. Signed-off-by: Katrin Fischer --- circ/returns.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/circ/returns.pl b/circ/returns.pl index 812b795..8b70e1a 100755 --- a/circ/returns.pl +++ b/circ/returns.pl @@ -278,6 +278,7 @@ if ($barcode) { itemtype => $biblio->{'itemtype'}, ccode => $biblio->{'ccode'}, itembiblionumber => $biblio->{'biblionumber'}, + biblionumber => $biblio->{'biblionumber'}, borrower => $borrower, additional_materials => $biblio->{'materials'}, ); -- 1.9.1