Skip to content

Commit c257425

Browse files
lint fix
1 parent 8ee8c38 commit c257425

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/wp-includes/abilities/class-wp-settings-abilities.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,8 +426,7 @@ public static function execute_update_settings( $input = array() ) {
426426
$sanitized_value = call_user_func( $args['sanitize_callback'], $sanitized_value );
427427
}
428428

429-
430-
$updated = update_option( $option_name, $sanitized_value );
429+
$updated = update_option( $option_name, $sanitized_value );
431430

432431
// Cast values for comparison (handles type mismatches from database and REST sanitization).
433432
$current_value = self::cast_value( get_option( $option_name ), $setting_type );

0 commit comments

Comments
 (0)