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

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

Props Cybr.
See #58831.

git-svn-id: https://develop.svn.wordpress.org/trunk@56732 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2023-09-27 09:40:43 +00:00
parent 972632085f
commit 711e4b9b97

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;
}
}