mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Stripslashes doesn't work on arrays. Add stripslashes_deep(). Props: Mike Little
git-svn-id: https://develop.svn.wordpress.org/trunk@2700 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
+4
-4
@@ -138,10 +138,10 @@ require_once(ABSPATH . WPINC . '/locale.php');
|
||||
|
||||
// If already slashed, strip.
|
||||
if ( get_magic_quotes_gpc() ) {
|
||||
$_GET = stripslashes($_GET );
|
||||
$_POST = stripslashes($_POST );
|
||||
$_COOKIE = stripslashes($_COOKIE);
|
||||
$_SERVER = stripslashes($_SERVER);
|
||||
$_GET = stripslashes_deep($_GET );
|
||||
$_POST = stripslashes_deep($_POST );
|
||||
$_COOKIE = stripslashes_deep($_COOKIE);
|
||||
$_SERVER = stripslashes_deep($_SERVER);
|
||||
}
|
||||
|
||||
// Escape with wpdb.
|
||||
|
||||
Reference in New Issue
Block a user