Skip to content

Commit

Permalink
Fix variable name typo. Props ionfish. fixes #7471 for 2.6
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/branches/2.6@8571 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ryan committed Aug 6, 2008
1 parent 6330e63 commit 2799245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-includes/functions.php
Expand Up @@ -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' ) )
Expand Down

0 comments on commit 2799245

Please sign in to comment.