mirror of https://github.com/BOINC/boinc.git
Added check for magic quotes
svn path=/trunk/boinc/; revision=13824
This commit is contained in:
parent
69d6146da9
commit
d6d1b2bf73
|
@ -15,4 +15,17 @@ function isIPBanned($ip){
|
|||
}
|
||||
}
|
||||
|
||||
if (get_magic_quotes_gpc()) {
|
||||
function stripslashes_deep($value) {
|
||||
$value = is_array($value) ?
|
||||
array_map('stripslashes_deep', $value) :
|
||||
stripslashes($value);
|
||||
return $value;
|
||||
}
|
||||
|
||||
$_POST = array_map('stripslashes_deep', $_POST);
|
||||
$_GET = array_map('stripslashes_deep', $_GET);
|
||||
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
|
||||
$_REQUEST = array_map('stripslashes_deep', $_REQUEST);
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue