Bug 13618: Remove html filter for NEXT
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 16 Aug 2018 17:55:47 +0000 (14:55 -0300)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 17 Aug 2018 15:55:14 +0000 (15:55 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

koha-tmpl/intranet-tmpl/prog/en/modules/admin/usage_statistics.tt
xt/find-missing-filters.t

index 25d5aba..4868c9a 100644 (file)
             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 %]
 
index 7236a1e..f9f1fd5 100755 (executable)
@@ -67,6 +67,7 @@ my @tt_directives = (
     qr{^\s*BLOCK},
     qr{^\s*FILTER},
     qr{^\s*STOP},
+    qr{^\s*NEXT},
 );
 
 sub process_tt_content {