From 064b19958f428ab4e7e5bfcb385c89a10cdced8b Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 6 Aug 2008 17:24:10 +0000 Subject: [PATCH] Fix variable name typo. Props ionfish. fixes #7471 for trunk git-svn-id: http://svn.automattic.com/wordpress/trunk@8570 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 4419998ea..fb3aaf0f0 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -341,7 +341,7 @@ function get_option( $setting ) { if ( false === $value ) { if ( defined( 'WP_INSTALLING' ) ) - $supress = $wpdb->suppress_errors(); + $suppress = $wpdb->suppress_errors(); // expected_slashed ($setting) $row = $wpdb->get_row( "SELECT option_value FROM $wpdb->options WHERE option_name = '$setting' LIMIT 1" ); if ( defined( 'WP_INSTALLING' ) )