From a91a4685c9bca1deae4056b2e0d4ecb588c82b22 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Wed, 19 Sep 2018 09:34:21 +0100 Subject: [PATCH] Bug 21377: Remove erroneous "html" filter use The "html" filter that is being applied to these variable declarations is inappropriate and has been removed. To test: - Before applying the patch, on master, view the "Manage request" page for an ILL request - TEST: Observe that, apart from the "Edit request" button, the various available action buttons do not display correctly - Apply the patch - TEST: Refresh the page and observe that the buttons now display correctly --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index 8bc9268364..a1595efb4b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -480,9 +480,9 @@ [% ELSIF query_type == 'illview' %] - [% actions = request.available_actions | html %] - [% capabilities = request.capabilities | html %] - [% req_status = request.status | html %] + [% actions = request.available_actions %] + [% capabilities = request.capabilities %] + [% req_status = request.status %]

Manage ILL request

-- 2.11.0