Lines 65-71
sub missing_filters {
Link Here
|
65 |
next if grep { $tt_block =~ $_ } @tt_directives; |
65 |
next if grep { $tt_block =~ $_ } @tt_directives; |
66 |
|
66 |
|
67 |
next |
67 |
next |
68 |
if $tt_block =~ m{\s?\|\s?\$KohaDates\s?$} |
68 |
if $tt_block =~ m{\s?\|\s?\$KohaDates\s?$} |
|
|
69 |
or $tt_block =~ m{\s?\|\s?\$Price\s?$} |
69 |
; # We could escape it but should be safe |
70 |
; # We could escape it but should be safe |
70 |
next if $tt_block =~ m{^\#}; # Is a comment, skip it |
71 |
next if $tt_block =~ m{^\#}; # Is a comment, skip it |
71 |
|
72 |
|
72 |
- |
|
|