mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-11-23 21:27:35 +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;
|
||||
} else if ($file->isDot()) {
|
||||
continue;
|
||||
} else if ($file->getFileName() == '.svn') {
|
||||
continue;
|
||||
}
|
||||
|
||||
$this->folders[$path] = true;
|
||||
@ -106,4 +108,4 @@ class jedcheckerRulesHtmlindexes extends JEDcheckerRule
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user