From 0b4b3e488fabde2b0d63e74a9325e39a7551e528 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 24 Aug 2018 19:15:18 -0300 Subject: [PATCH] Bug 13618: (follow-up) Manually replace missing .raw Must be |$raw, not |raw Error: Template process failed: undef error - raw: filter not found at /home/vagrant/kohaclone/C4/Templates.pm line 122 To recreate: Add a new restriction and visit circulation.pl?borrowernumber=42 --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index e9d060f2dc..dbf3e2d37e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -693,9 +693,9 @@ No patron matched [% message | html %] [% IF ( debarredcomment ) %] with the explanation:
[% IF debarredcomment.search('OVERDUES_PROCESS') %] - Restriction added by overdues process [% debarredcomment.remove('OVERDUES_PROCESS ') | raw | html_line_break %] + Restriction added by overdues process [% debarredcomment.remove('OVERDUES_PROCESS ') | $raw | html_line_break %] [% ELSE %] - [% debarredcomment | raw | html_line_break %] + [% debarredcomment | $raw | html_line_break %] [% END %] [% END %] -- 2.11.0