Bugzilla – Attachment 140198 Details for
Bug 31518
Hidden items count not displayed on hold request page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 31518: Fix syntax error on request.tt that prevents showing hidden item count
Bug-31518-Fix-syntax-error-on-requesttt-that-preve.patch (text/plain), 1.90 KB, created by
Joonas Kylmälä
on 2022-09-04 07:27:16 UTC
(
hide
)
Description:
Bug 31518: Fix syntax error on request.tt that prevents showing hidden item count
Filename:
MIME Type:
Creator:
Joonas Kylmälä
Created:
2022-09-04 07:27:16 UTC
Size:
1.90 KB
patch
obsolete
>From 80c2b5ca84fd271144d147b1a6af3e9b89e800bc Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Joonas=20Kylm=C3=A4l=C3=A4?= <joonas.kylmala@iki.fi> >Date: Sun, 4 Sep 2022 10:22:22 +0300 >Subject: [PATCH] Bug 31518: Fix syntax error on request.tt that prevents > showing hidden item count > >The variable set by request.pl doesn't have biblio prefix, it is just >hiddencount. > >To test: > 1) Log in with a staff member account that has "Lost items in staff > interface" setting set to "Hidden by default" in the patron category > settings > 2) Add a lost item to biblio > 3) Go place a hold on staff interface (request.pl) notice the broken > link on the request page: "Show all items ( hidden)" > 4) After applying the patch it should read "Show all items (1 hidden)" >--- > koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >index eb37dbc00e..0ed253f766 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >@@ -859,7 +859,7 @@ > [% IF hiddencount %] > <form> > <p class="hiddencount"> >- <a href="request.pl?biblionumber=[% biblio.biblionumber | uri %]&borrowernumber=[% borrowernumber | uri %]&showallitems=1">Show all items ([% biblio.hiddencount | html %] hidden)</a> >+ <a href="request.pl?biblionumber=[% biblio.biblionumber | uri %]&borrowernumber=[% borrowernumber | uri %]&showallitems=1">Show all items ([% hiddencount | html %] hidden)</a> > </p> > </form> > [% END # /IF hiddencount %] >-- >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 31518
:
140198
|
140268