Bugzilla – Attachment 181100 Details for
Bug 37050
Add select2 to SQL report multi select
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37050: (follow-up) Fix invalid html syntax in tt
Bug-37050-follow-up-Fix-invalid-html-syntax-in-tt.patch (text/plain), 2.20 KB, created by
Brendan Lawlor
on 2025-04-17 14:14:59 UTC
(
hide
)
Description:
Bug 37050: (follow-up) Fix invalid html syntax in tt
Filename:
MIME Type:
Creator:
Brendan Lawlor
Created:
2025-04-17 14:14:59 UTC
Size:
2.20 KB
patch
obsolete
>From 3215e86ede6d22342527a7429b4f1401dd12a228 Mon Sep 17 00:00:00 2001 >From: Brendan Lawlor <blawlor@clamsnet.org> >Date: Thu, 17 Apr 2025 14:11:34 +0000 >Subject: [PATCH] Bug 37050: (follow-up) Fix invalid html syntax in tt > >--- > .../prog/en/modules/reports/guided_reports_start.tt | 8 +++----- > 1 file changed, 3 insertions(+), 5 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 52cea2b710..e50493fa59 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 >@@ -907,12 +907,10 @@ > [% ELSE %] > <li> > <label for="sql_params_[% sql_param.labelid | html %]">[% sql_param.entry | html %]:</label> >- [% IF (sql_param.select_multiple) %] >- <select name="[%- sql_param.input.name | html -%]" tabindex="1" id="[%- sql_param.input.id | html -%]" multiple> >+ <select name="[%- sql_param.input.name | html -%]" tabindex="1" id="[%- sql_param.input.id | html -%]" [% IF (sql_param.select_multiple) %]multiple[% END %]> >+ [% IF (sql_param.select_multiple) %] > <option value="[% sql_param.input.values.join("\n") | html %]" disabled="disabled"></option> >- [% ELSE %] >- <select name="[%- sql_param.input.name | html -%]" tabindex="1" id="[%- sql_param.input.id | html -%]"> >- [% END %] >+ [% END %] > [% IF (sql_param.include_all) %] > <option value="%">All</option> > [% END %] >-- >2.39.5
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 37050
:
167555
|
167659
|
167838
|
167839
|
167840
|
167841
|
169750
|
169751
|
169818
|
169819
|
171340
|
171341
|
171342
|
171957
|
171958
|
171959
|
177320
|
179669
|
179728
|
180618
|
181099
| 181100