Remove usless var

master
heuzef 6 years ago
parent 0635e6c064
commit 0e5b16348e
  1. 8
      defacement_check.pl

@ -102,12 +102,12 @@ foreach $file (@files)
}
}
# However, ignore this Threat please
# However, IGNORE this Threat please
foreach my $i (@whitelist) {
foreach (uniq(@found)) {
foreach (@found) {
foreach (grep(/$i/i, split(/\n/))) {
print "\033[35mIGNORE ";
pop @found, $_;
print "\033[35mIGNORE "; # VERBOSE
pop @found;
}
}
}

Loading…
Cancel
Save