Fixes #1370
git-svn-id: http://svn.automattic.com/wordpress/trunk@2740 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -1541,7 +1541,7 @@ function get_themes() {
|
|||||||
$themes_dir = @ dir($theme_root);
|
$themes_dir = @ dir($theme_root);
|
||||||
if ($themes_dir) {
|
if ($themes_dir) {
|
||||||
while(($theme_dir = $themes_dir->read()) !== false) {
|
while(($theme_dir = $themes_dir->read()) !== false) {
|
||||||
if (is_dir($theme_root . '/' . $theme_dir)) {
|
if ( is_dir($theme_root . '/' . $theme_dir) && is_readable($theme_root . '/' . $theme_dir) ) {
|
||||||
if ($theme_dir{0} == '.' || $theme_dir == '..' || $theme_dir == 'CVS') {
|
if ($theme_dir{0} == '.' || $theme_dir == '..' || $theme_dir == 'CVS') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user