mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-20 19:56:49 +01:00
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:
parent
8f422594ee
commit
b2c997556a
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user