Bugzilla – Attachment 12581 Details for
Bug 8826
Initialization of hash triggers error log entries.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 8826 - Initialization of hash triggers error log entries.
Bug-8826---Initialization-of-hash-triggers-error-l.patch (text/plain), 1.03 KB, created by
Kyle M Hall (khall)
on 2012-09-28 13:18:57 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 8826 - Initialization of hash triggers error log entries.
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2012-09-28 13:18:57 UTC
Size:
1.03 KB
patch
obsolete
>From d777f7ac7b184cb670088555227fdc6820aeb732 Mon Sep 17 00:00:00 2001 >From: Mark Tompsett <mtompset@hotmail.com> >Date: Thu, 27 Sep 2012 14:52:14 +0800 >Subject: [PATCH] Bug 8826 - Initialization of hash triggers error log entries. >Content-Type: text/plain; charset="utf-8" > >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 <kyle@bywatersolutions.com> >--- > circ/circulation.pl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/circ/circulation.pl b/circ/circulation.pl >index f15d4ce..b4f2375 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 @failedreturns = $query->param('failedreturn'); >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 8826
:
12543
|
12544
| 12581 |
12582
|
13165