Stripslashes doesn't work on arrays. Add stripslashes_deep(). Props: Mike Little

git-svn-id: http://svn.automattic.com/wordpress/trunk@2700 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-07-06 01:12:38 +00:00
parent 91efba11ad
commit 6cbb6fecb3
2 changed files with 14 additions and 4 deletions

View File

@ -532,6 +532,16 @@ function addslashes_gpc($gpc) {
return $wpdb->escape($gpc);
}
function stripslashes_deep($value)
{
$value = is_array($value) ?
array_map('stripslashes_deep', $value) :
stripslashes($value);
return $value;
}
function antispambot($emailaddy, $mailto=0) {
$emailNOSPAMaddy = '';
srand ((float) microtime() * 1000000);

View File

@ -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.