diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 406ec773a5..a57623f52a 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -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; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index ea735b0193..7d2cb23e65 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.