fixed .htaccess files

This commit is contained in:
Roland Gruber 2013-01-01 20:18:03 +00:00
parent 370ae3a17d
commit 52cdf8fbd0
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ function containsFiles($dir) {
if ($dirHandle != null) { if ($dirHandle != null) {
$file = @readdir($dirHandle); $file = @readdir($dirHandle);
while ($file !== false) { while ($file !== false) {
if (is_file($dir . '/' . $file)) { if (is_file($dir . '/' . $file) && ($file != '.htaccess')) {
$return = true; $return = true;
break; break;
} }