Don't validate theme during install.

git-svn-id: http://svn.automattic.com/wordpress/trunk@4024 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2006-07-21 19:00:04 +00:00
parent e109d4e11b
commit f423760531
1 changed files with 4 additions and 0 deletions

View File

@ -370,6 +370,10 @@ function load_template($file) {
}
function validate_current_theme() {
// Don't validate during an install/upgrade.
if ( defined('WP_INSTALLING') )
return true;
if ((get_template() != 'default') && (!file_exists(get_template_directory() . '/index.php'))) {
update_option('template', 'default');
update_option('stylesheet', 'default');