From f42376053110ae71893684db3b23df8e2fa50fc9 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 21 Jul 2006 19:00:04 +0000 Subject: [PATCH] Don't validate theme during install. git-svn-id: http://svn.automattic.com/wordpress/trunk@4024 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 7abf80930..d7dcff022 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -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');