Bugzilla – Attachment 165345 Details for
Bug 35746
Multiple selections for parameters used in the IN function
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35746: (follow-up) Fix invalid tt in html tag
Bug-35746-follow-up-Fix-invalid-tt-in-html-tag.patch (text/plain), 2.54 KB, created by
Brendan Lawlor
on 2024-04-22 18:46:04 UTC
(
hide
)
Description:
Bug 35746: (follow-up) Fix invalid tt in html tag
Filename:
MIME Type:
Creator:
Brendan Lawlor
Created:
2024-04-22 18:46:04 UTC
Size:
2.54 KB
patch
obsolete
>From e5a72e2d764779f1fdab9fe1f6c85319d463af84 Mon Sep 17 00:00:00 2001 >From: Brendan Lawlor <blawlor@clamsnet.org> >Date: Mon, 22 Apr 2024 18:28:56 +0000 >Subject: [PATCH] Bug 35746: (follow-up) Fix invalid tt in html tag > >--- > .../prog/en/modules/reports/guided_reports_start.tt | 10 ++++++---- > 1 file changed, 6 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >index cd959ca710..a820f1932a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >@@ -876,13 +876,15 @@ > [% ELSE %] > <li> > <label for="sql_params_[% sql_param.labelid | html %]">[% sql_param.entry | html %]:</label> >- <select name="[%- sql_param.input.name | html -%]" tabindex="1" id="[%- sql_param.input.id | html -%]" multiple="[%- sql_param.select_multiple | html -%]"> >+ [% IF (sql_param.select_multiple) %] >+ <select name="[%- sql_param.input.name | html -%]" tabindex="1" id="[%- sql_param.input.id | html -%]" multiple> >+ <option value="null" hidden></option> >+ [% ELSE %] >+ <select name="[%- sql_param.input.name | html -%]" tabindex="1" id="[%- sql_param.input.id | html -%]"> >+ [% END %] > [% IF (sql_param.include_all) %] > <option value="%">All</option> > [% END %] >- [% IF (sql_param.select_multiple) %] >- <option value="null" hidden></option> >- [% END %] > [% FOREACH value IN sql_param.input.values %] > <option value="[%- value | html -%]">[%- sql_param.input.labels.$value | html -%]</option> > [% END %] >-- >2.39.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 35746
:
160880
|
160995
|
161224
|
161247
|
161248
|
162300
|
162303
|
163875
|
163920
|
163921
|
165276
|
165333
|
165334
|
165345
|
165659
|
165660