Browse Source

Bug 13618: Remove html filter for NEXT

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
18.11.x
Jonathan Druart 6 years ago
committed by Nick Clemens
parent
commit
96e2d28fd5
  1. 2
      koha-tmpl/intranet-tmpl/prog/en/modules/admin/usage_statistics.tt
  2. 1
      xt/find-missing-filters.t

2
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 %]

1
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 {

Loading…
Cancel
Save