Browse Source

Bug 2505 - add strict and warnings to check_sysprefs

3.2.x
Donovan Jones 14 years ago
committed by Chris Cormack
parent
commit
1726a06253
  1. 7
      misc/check_sysprefs.pl

7
misc/check_sysprefs.pl

@ -5,10 +5,11 @@
# export PERL5LIB
# then ./check_sysprefs.pl path (if path is blank it will use .)
#use strict;
#use warnings; FIXME - Bug 2505
use strict;
use warnings;
use File::Find;
use C4::Context;
@ARGV = qw(.) unless @ARGV;
@ -38,5 +39,5 @@ sub check_sys_pref {
}
$sth->finish();
}
find(\&check_sys_pref,@ARGV);

Loading…
Cancel
Save