Bugzilla – Attachment 79817 Details for
Bug 21471
Misspelled variable name in _get_outstanding_holds
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21471: Misspelled variable in _get_outstanding_holds
Bug-21471-Misspelled-variable-in-getoutstandinghol.patch (text/plain), 956 bytes, created by
David Gustafsson
on 2018-10-02 11:40:45 UTC
(
hide
)
Description:
Bug 21471: Misspelled variable in _get_outstanding_holds
Filename:
MIME Type:
Creator:
David Gustafsson
Created:
2018-10-02 11:40:45 UTC
Size:
956 bytes
patch
obsolete
>From e36474d8dcb5d64aed1915708e4e5d45864adb69 Mon Sep 17 00:00:00 2001 >From: David Gustafsson <david.gustafsson@ub.gu.se> >Date: Tue, 2 Oct 2018 13:37:26 +0200 >Subject: [PATCH] Bug 21471: Misspelled variable in _get_outstanding_holds > >Misspelled variable causes _get_outstanding_holds to crash >if patron is queued on biblio level >--- > C4/SIP/ILS/Patron.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/SIP/ILS/Patron.pm b/C4/SIP/ILS/Patron.pm >index 82ccc756f2..9b8cb53150 100644 >--- a/C4/SIP/ILS/Patron.pm >+++ b/C4/SIP/ILS/Patron.pm >@@ -490,7 +490,7 @@ sub _get_outstanding_holds { > # We need to return a barcode for the biblio so the client > # can request the biblio info > my $items = $hold->biblio->items; >- $item = $items->count ? $item->next : undef; >+ $item = $items->count ? $items->next : undef; > } > my $unblessed_hold = $hold->unblessed; > >-- >2.11.0
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 21471
:
79817
|
79851
|
79900