Changeset 3487

Show
Ignore:
Timestamp:
01/26/06 02:33:14 (3 years ago)
Author:
ryan
Message:

Use double quotes. fixes #2332

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/functions.php

    r3485 r3487  
    374374    $wpdb->query("UPDATE $wpdb->options SET option_value = '$newvalue' WHERE option_name = '$option_name'"); 
    375375    if ( $wpdb->rows_affected == 1 ) { 
    376         do_action('update_option_{$option_name}', $oldvalue, $newvalue); 
     376        do_action("update_option_{$option_name}", $oldvalue, $newvalue); 
    377377        return true; 
    378378    }