From 96e2d28fd5d342b6569ad24d17cedf8ad6415616 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 16 Aug 2018 14:55:47 -0300 Subject: [PATCH] Bug 13618: Remove html filter for NEXT Signed-off-by: Nick Clemens --- .../intranet-tmpl/prog/en/modules/admin/usage_statistics.tt | 2 +- xt/find-missing-filters.t | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/usage_statistics.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/usage_statistics.tt index 25d5aba66e..4868c9a78a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/usage_statistics.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/usage_statistics.tt @@ -301,7 +301,7 @@ add_to_map( current_elt, latlng ); [% END %] [% FOR l IN libraries %] - [% NEXT | html UNLESS l.geolocation %] + [% NEXT UNLESS l.geolocation %] add_to_map( { 'text': "[% l.branchname | html %]", 'id': "geolocation_[% l.branchcode | html %]" }, [ [% l.geolocation | html %] ] ); [% END %] diff --git a/xt/find-missing-filters.t b/xt/find-missing-filters.t index 7236a1e3d7..f9f1fd58c6 100755 --- a/xt/find-missing-filters.t +++ b/xt/find-missing-filters.t @@ -67,6 +67,7 @@ my @tt_directives = ( qr{^\s*BLOCK}, qr{^\s*FILTER}, qr{^\s*STOP}, + qr{^\s*NEXT}, ); sub process_tt_content { -- 2.20.1