View | Details | Raw Unified | Return to bug 38365
Collapse All | Expand All

(-)a/misc/devel/add_csp_nonces.pl (-3 / +2 lines)
Lines 155-162 sub process_file { Link Here
155
}
155
}
156
156
157
# Find and process all template files
157
# Find and process all template files
158
my $dev_files = Koha::Devel::Files->new;
158
my $dev_files = Koha::Devel::Files->new( { context => 'nonce' } );
159
my @tt_files  = $dev_files->ls_tt_files;
159
my @tt_files  = $dev_files->ls_tt_files();
160
for my $file (@tt_files) {
160
for my $file (@tt_files) {
161
    process_file($file);
161
    process_file($file);
162
}
162
}
163
- 

Return to bug 38365