From d39283175622ddecaa3797566d1b4bc910ecdaa0 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Thu, 27 Sep 2012 14:52:14 +0800 Subject: [PATCH] Bug 8826 - Initialization of hash triggers error log entries. Changed: our %renew_failed = {}; To: our %renew_failed = (); This prevents an error log about Reference found where even-sized list expected. Signed-off-by: Kyle M Hall Signed-off-by: Jared Camins-Esakov Signed-off-by: Chris Cormack --- circ/circulation.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index 7b388ce0dd..9540e3c673 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -94,7 +94,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user ( my $branches = GetBranches(); my @failedrenews = $query->param('failedrenew'); # expected to be itemnumbers -our %renew_failed = {}; +our %renew_failed = (); for (@failedrenews) { $renew_failed{$_} = 1; } my $findborrower = $query->param('findborrower'); -- 2.39.5