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
This commit is contained in:
Ryan Boren 2008-08-06 17:24:10 +00:00
parent f70269ff48
commit 3937bd9530
1 changed files with 1 additions and 1 deletions

View File

@ -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' ) )