mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user