33
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-11-24 05:37:38 +00:00

Skip ".svn" folders in libraries/rules/htmlindexes.php

This commit is contained in:
Jisse Reitsma 2013-02-12 09:41:41 +01:00
parent c09fe92538
commit 4cdaae9278

View File

@ -88,6 +88,8 @@ class jedcheckerRulesHtmlindexes extends JEDcheckerRule
$path = $start;
} else if ($file->isDot()) {
continue;
} else if ($file->getFileName() == '.svn') {
continue;
}
$this->folders[$path] = true;