From e2afac7e7adcb66ab01922ef5c68ce046c0886d7 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 28 Sep 2012 09:19:29 -0400 Subject: [PATCH] Bug 8826 - Initialization of hash triggers error log entries - Followup 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 b051281..1d634d2 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -98,7 +98,7 @@ our %renew_failed = {}; for (@failedrenews) { $renew_failed{$_} = 1; } my @failedreturns = $query->param('failedreturn'); -our %return_failed = {}; +our %return_failed = (); for (@failedreturns) { $return_failed{$_} = 1; } my $findborrower = $query->param('findborrower'); -- 1.7.10.4