diff options
-rwxr-xr-x | php.req | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -22,6 +22,8 @@ foreach (@ARGV ? $ARGV : <> ) { push @files, $f; # skip non-php files next unless ($f =~ /\.php$/); + # skip doc files + next if ($f =~ /^\/usr\/share\/doc/); open(F, "< $f") or die; if ($f =~ /$pear/) { |