[Koha-bugs] [Bug 20995] Add request ID to OPAC ILL requests display table

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Oct 5 16:41:00 CEST 2018


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20995

Katrin Fischer <katrin.fischer at bsz-bw.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #80070|1                           |0
        is obsolete|                            |

--- Comment #11 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
Comment on attachment 80070
  --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=80070
Bug 20995: (QA follow-up) Add html filters and fix doubled up columns from
merge

>From 7cce8c2c0c31b2fd06edad8eedaa938d9c33195b Mon Sep 17 00:00:00 2001
>From: Katrin Fischer <katrin.fischer at 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 at bsz-bw.de>
>---
> .../opac-tmpl/bootstrap/en/modules/opac-illrequests.tt     | 14 +++++++-------
> 1 file changed, 7 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 77fd1d0715..0352ff5d65 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,18 @@
>                             [% 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>
>+                                    <td>[% request.placed | html %]</td>
>+                                    <td>[% request.updated | html %]</td>
>                                     <td>
>                                         <a href="/cgi-bin/koha/opac-illrequests.pl?method=view&illrequest_id=[% request.id | html %]" class="btn btn-default btn-small pull-right">View</a>
>                                     </td>
>@@ -155,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.11.0

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list