Bugzilla – Attachment 134661 Details for
Bug 30697
Cannot renew when record is on hold under specific conditions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30697: Fix return value when $items_any_available is defined
Bug-30697-Fix-return-value-when-itemsanyavailable-.patch (text/plain), 1.06 KB, created by
Shi Yao Wang
on 2022-05-05 20:45:45 UTC
(
hide
)
Description:
Bug 30697: Fix return value when $items_any_available is defined
Filename:
MIME Type:
Creator:
Shi Yao Wang
Created:
2022-05-05 20:45:45 UTC
Size:
1.06 KB
patch
obsolete
>From 0df5bca8e5cde9f86899ccfce40b65fc2021e556 Mon Sep 17 00:00:00 2001 >From: Shi Yao Wang <shi-yao.wang@inlibro.com> >Date: Thu, 5 May 2022 16:41:41 -0400 >Subject: [PATCH] Bug 30697: Fix return value when $items_any_available is > defined > >Return the value of $item_any_available when it is defined instead of >the opposite value. >--- > C4/Reserves.pm | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > >diff --git a/C4/Reserves.pm b/C4/Reserves.pm >index d6121a7616..4b7ecffe1a 100644 >--- a/C4/Reserves.pm >+++ b/C4/Reserves.pm >@@ -1352,8 +1352,7 @@ sub IsAvailableForItemLevelRequest { > > # if we have this param predefined from outer caller sub, we just need > # to return it, so we saving from having loop inside other loop: >- return $items_any_available ? 0 : 1 >- if defined $items_any_available; >+ return $items_any_available if defined $items_any_available; > > my $any_available = ItemsAnyAvailableAndNotRestricted( { biblionumber => $item->biblionumber, patron => $patron }); > return $any_available ? 0 : 1; >-- >2.25.1
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 30697
:
134661
|
134666