mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
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:
parent
972632085f
commit
711e4b9b97
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user