From 3cef3bccfc6b53cd1dbde9161eb5d76b43e306ef 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. Signed-off-by: Owen Leonard --- 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 5374eef..b188945 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.1.4