From 5748ed2497874bd6fbfe0322c9fedc7f042caf50 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Mon, 31 Jan 2005 18:46:17 +0000 Subject: [PATCH] Don't look at dot directories or CVS for themes. git-svn-id: https://develop.svn.wordpress.org/trunk@2175 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 05dddcec40..b9e7b525da 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1320,7 +1320,7 @@ function get_themes() { if ($themes_dir) { while(($theme_dir = $themes_dir->read()) !== false) { if (is_dir($theme_root . '/' . $theme_dir)) { - if ($theme_dir == '.' || $theme_dir == '..') { + if ($theme_dir{0} == '.' || $theme_dir == '..' || $theme_dir == 'CVS') { continue; } $stylish_dir = @ dir($theme_root . '/' . $theme_dir);