mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-11-27 23:36:38 +00:00
Skip ".svn" folders in libraries/rules/htmlindexes.php
This commit is contained in:
parent
c09fe92538
commit
4cdaae9278
@ -88,6 +88,8 @@ class jedcheckerRulesHtmlindexes extends JEDcheckerRule
|
|||||||
$path = $start;
|
$path = $start;
|
||||||
} else if ($file->isDot()) {
|
} else if ($file->isDot()) {
|
||||||
continue;
|
continue;
|
||||||
|
} else if ($file->getFileName() == '.svn') {
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->folders[$path] = true;
|
$this->folders[$path] = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user