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
This commit is contained in:
Matt Mullenweg 2005-01-31 18:46:17 +00:00
parent bbf8db321d
commit 5748ed2497

View File

@ -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);