From 3da652505505c615ea2ab7c9535f60faa66be49e 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 Content-Type: text/plain; charset="utf-8" --- circ/circulation.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index b4f2375..9c1d1b3 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.2.5