mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-05-25 13:44:30 +00:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user