From 4f0edc787827d5343a5a76734f11029029c6b7f8 Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 14 Nov 2005 09:08:27 +0000 Subject: [PATCH] Reverse that cleanup, there is reason in the madness ;) git-svn-id: http://svn.automattic.com/wordpress/trunk@3071 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 9a85d299cc..fd56986c5d 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -267,14 +267,16 @@ function get_settings($setting) { if ( false === $value ) { if ( defined('WP_INSTALLING') ) $wpdb->hide_errors(); - $value = $wpdb->get_var("SELECT option_value FROM $wpdb->options WHERE option_name = '$setting' LIMIT 1"); + $row = $wpdb->get_row("SELECT option_value FROM $wpdb->options WHERE option_name = '$setting' LIMIT 1"); if ( defined('WP_INSTALLING') ) $wpdb->show_errors(); - if( $value ) + if( is_object( $row) ) { // Has to be get_row instead of get_var because of funkiness with 0, false, null values + $value = $row->option_value; wp_cache_set($setting, $value, 'options'); - else + } else { return false; + } } // If home is not set use siteurl.