https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20995 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #80059|1 |0 is obsolete| | --- Comment #12 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Comment on attachment 80059 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=80059 Bug 20995: (QA follow-up) Add html filters and fix doubled up columns from merge
From d055ce19d6be1cb851628493af13606d3426ac39 Mon Sep 17 00:00:00 2001 From: Katrin Fischer <katrin.fischer@bsz-bw.de> Date: Fri, 5 Oct 2018 13:42:35 +0200 Subject: [PATCH] Bug 20995: (QA follow-up) Add html filters and fix doubled up columns from merge
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt index 8442ac4..f1f8099 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt @@ -126,18 +126,13 @@ [% FOREACH request IN requests %] [% status = request.status | html %] <tr> - <td>[% request.id %]</td> + <td>[% request.id | html %]</td> <td> [% IF request.metadata.Author %][% request.metadata.Author | html %][% ELSE %]<span>N/A</span>[% END %] </td> <td> [% IF request.metadata.Title %][% request.metadata.Title | html %][% ELSE %]<span>N/A</span>[% END %] </td> - <td>[% request.backend %]</td> - <td>[% request.medium %]</td> - <td>[% request.capabilities.$status.name %]</td> - <td>[% request.placed %]</td> - <td>[% request.updated %]</td> <td>[% request.backend | html %]</td> <td>[% request.medium | html %]</td> <td>[% request.capabilities.$status.name | html %]</td> @@ -160,7 +155,7 @@ <ol> <li> <label for="request_id">Request ID:</label> - [% request.id %] + [% request.id | html %] </li> <li> <label for="backend">Requested from:</label> -- 2.1.4
-- You are receiving this mail because: You are watching all bug changes.