From 3937bd953034e48347afb8925be2fe7732f45ee5 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 6 Aug 2008 17:24:10 +0000 Subject: [PATCH] Fix variable name typo. Props ionfish. fixes #7471 for trunk git-svn-id: https://develop.svn.wordpress.org/trunk@8570 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 4419998ea5..fb3aaf0f00 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' ) )