Small cleanup
git-svn-id: http://svn.automattic.com/wordpress/trunk@3068 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f6fd138e51
commit
f1951d856a
|
@ -267,16 +267,14 @@ function get_settings($setting) {
|
|||
if ( false === $value ) {
|
||||
if ( defined('WP_INSTALLING') )
|
||||
$wpdb->hide_errors();
|
||||
$value = $wpdb->get_row("SELECT option_value FROM $wpdb->options WHERE option_name = '$setting'");
|
||||
$value = $wpdb->get_var("SELECT option_value FROM $wpdb->options WHERE option_name = '$setting' LIMIT 1");
|
||||
if ( defined('WP_INSTALLING') )
|
||||
$wpdb->show_errors();
|
||||
|
||||
if( is_object( $value ) ) {
|
||||
$value = $value->option_value;
|
||||
if( $value )
|
||||
wp_cache_set($setting, $value, 'options');
|
||||
} else {
|
||||
else
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// If home is not set use siteurl.
|
||||
|
|
Loading…
Reference in New Issue