Bootstrap/Load: Remove a redundant `continue` statement in `add_magic_quotes()`.

Follow-up to [48205], [48440].

Props Cybr.
See #58831.
Built from https://develop.svn.wordpress.org/trunk@56732


git-svn-id: http://core.svn.wordpress.org/trunk@56244 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-09-27 09:42:24 +00:00
parent 8f422594ee
commit b2c997556a
2 changed files with 1 additions and 3 deletions

View File

@ -1284,8 +1284,6 @@ function add_magic_quotes( $input_array ) {
$input_array[ $k ] = add_magic_quotes( $v );
} elseif ( is_string( $v ) ) {
$input_array[ $k ] = addslashes( $v );
} else {
continue;
}
}

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.4-beta1-56731';
$wp_version = '6.4-beta1-56732';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.