Clean up is_blog_installed(), remove redundant or unnecessary code. see #8947

git-svn-id: http://svn.automattic.com/wordpress/trunk@10974 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2009-04-17 01:43:53 +00:00
parent 14bd87615e
commit 9f5a39d759
1 changed files with 6 additions and 6 deletions

View File

@ -1675,20 +1675,20 @@ function is_blog_installed() {
global $wpdb; global $wpdb;
// Check cache first. If options table goes away and we have true cached, oh well. // Check cache first. If options table goes away and we have true cached, oh well.
if ( wp_cache_get('is_blog_installed') ) if ( wp_cache_get( 'is_blog_installed' ) )
return true; return true;
$suppress = $wpdb->suppress_errors(); $suppress = $wpdb->suppress_errors();
$alloptions = wp_load_alloptions(); $alloptions = wp_load_alloptions();
// If siteurl is not set to autoload, but other options are loaded, check if it's there // If siteurl is not set to autoload, check it specifically
if ( !isset($alloptions['siteurl']) && count($alloptions) > 1 ) if ( !isset( $alloptions['siteurl'] ) )
$installed = $wpdb->get_var( "SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl'" ); $installed = $wpdb->get_var( "SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl'" );
else else
$installed = $alloptions['siteurl']; $installed = $alloptions['siteurl'];
$wpdb->suppress_errors($suppress); $wpdb->suppress_errors( $suppress );
$installed = !empty( $installed ) ? true : false; $installed = !empty( $installed );
wp_cache_set('is_blog_installed', $installed); wp_cache_set( 'is_blog_installed', $installed );
return $installed; return $installed;
} }