Changeset 2175

Show
Ignore:
Timestamp:
01/31/05 18:46:17 (4 years ago)
Author:
saxmatt
Message:

Don't look at dot directories or CVS for themes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/functions.php

    r2167 r2175  
    13211321        while(($theme_dir = $themes_dir->read()) !== false) { 
    13221322            if (is_dir($theme_root . '/' . $theme_dir)) { 
    1323                 if ($theme_dir == '.' || $theme_dir == '..') { 
     1323                if ($theme_dir{0} == '.' || $theme_dir == '..' || $theme_dir == 'CVS') { 
    13241324                    continue; 
    13251325                }