aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_styles.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/acp/acp_styles.php')
-rw-r--r--phpBB/includes/acp/acp_styles.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php
index f4f7f8e56b..31e99a6b0c 100644
--- a/phpBB/includes/acp/acp_styles.php
+++ b/phpBB/includes/acp/acp_styles.php
@@ -637,7 +637,7 @@ parse_css_file = {PARSE_CSS_FILE}
}
}
}
- @closedir($dp);
+ closedir($dp);
}
unset($installed);
@@ -1860,15 +1860,17 @@ parse_css_file = {PARSE_CSS_FILE}
$imageset_root = "{$phpbb_root_path}styles/{$style_row['imageset_path']}/imageset/";
- $dh = @opendir($imageset_root);
- while (($fname = readdir($dh)) !== false)
+ if ($dh = @opendir($imageset_root))
{
- if ($fname[0] != '.' && $fname != 'CVS' && is_dir("$imageset_root$fname"))
+ while (($fname = readdir($dh)) !== false)
{
- $files[key($files)]['exclude'] .= ',' . $fname . '/imageset.cfg';
+ if ($fname[0] != '.' && $fname != 'CVS' && is_dir("$imageset_root$fname"))
+ {
+ $files[key($files)]['exclude'] .= ',' . $fname . '/imageset.cfg';
+ }
}
+ closedir($dh);
}
- @closedir($dh);
$imageset_lang = array();