From cda3032eb6bc56996a9b93710c1040b8adb92206 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Wed, 26 Sep 2018 10:32:40 +0100 Subject: [PATCH] Bug 21377: (follow-up) Re-remove raw filter This patch removes the raw filter that was erroneously applied, these are variable declarations, they don't need filtering. I've also simplified things by removing two of the extraneous variable declarations. --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 8 +++----- 1 file changed, 3 insertions(+), 5 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 5374eefcc8..b188945d12 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,16 +480,14 @@ [% ELSIF query_type == 'illview' %] - [% actions = request.available_actions | $raw %] - [% capabilities = request.capabilities | $raw %] - [% req_status = request.status | $raw %] + [% req_status = request.status %]

Manage ILL request

Edit request - [% FOREACH action IN actions %] + [% FOREACH action IN request.available_actions %] [% IF action.method != 0 %] @@ -531,7 +529,7 @@
Status: - [% capabilities.$req_status.name | html %] + [% request.capabilities.$req_status.name | html %]
Last updated: -- 2.11.0