Bugzilla – Attachment 144403 Details for
Bug 28975
Holds queue lists can show holds from all libraries even with IndependentBranches
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28975: (QA follow-up) Fix indentation, simplify if statement
Bug-28975-QA-follow-up-Fix-indentation-simplify-if.patch (text/plain), 1.49 KB, created by
Kyle M Hall (khall)
on 2022-12-02 14:19:04 UTC
(
hide
)
Description:
Bug 28975: (QA follow-up) Fix indentation, simplify if statement
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2022-12-02 14:19:04 UTC
Size:
1.49 KB
patch
obsolete
>From c5986146fa884f4b67f02276daa34556c04524d8 Mon Sep 17 00:00:00 2001 >From: Kyle Hall <kyle@bywatersolutions.com> >Date: Fri, 2 Dec 2022 09:18:08 -0500 >Subject: [PATCH] Bug 28975: (QA follow-up) Fix indentation, simplify if > statement > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > .../intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt >index ab29248b53..27e2a95501 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt >@@ -259,9 +259,9 @@ > <li> > <label for="branchlimit">Library: </label> > <select name="branchlimit" id="branchlimit"> >- [% IF !Koha.Preference('IndependentBranches') || (Koha.Preference('IndependentBranches') && CAN_user_superlibrarian) %] >- <option value="">All</option> >- [% END %] >+ [% IF CAN_user_superlibrarian || !Koha.Preference('IndependentBranches') %] >+ <option value="">All</option> >+ [% END %] > [% PROCESS options_for_libraries libraries => Branches.all( selected => branchlimit, only_from_group => 1 ) %] > </select> > </li> >-- >2.30.2
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 28975
:
129810
|
137133
|
137170
|
144402
| 144403