Ticket #7233: 7233.diff
File 7233.diff, 476 bytes (added by , 17 years ago) |
---|
-
wp-includes/functions.php
492 492 493 493 // If the new and old values are the same, no need to update. 494 494 $oldvalue = get_option( $safe_option_name ); 495 496 $newvalue = apply_filters( 'pre_update_option_' . $option_name, $newvalue, $oldvalue ); 497 495 498 if ( $newvalue === $oldvalue ) 496 499 return false; 497 500