use better magic quotes removal fix
This commit is contained in:
parent
c5701e70a4
commit
c0793f64a8
16
backend.php
16
backend.php
|
@ -3,11 +3,17 @@
|
||||||
|
|
||||||
/* remove ill effects of magic quotes */
|
/* remove ill effects of magic quotes */
|
||||||
|
|
||||||
if (get_magic_quotes_gpc()) {
|
if (!get_magic_quotes_gpc()) {
|
||||||
$_REQUEST = array_map('stripslashes', $_REQUEST);
|
function stripslashes_deep($value) {
|
||||||
$_POST = array_map('stripslashes', $_POST);
|
$value = is_array($value) ?
|
||||||
// $_REQUEST = array_map('stripslashes', $_REQUEST);
|
array_map('stripslashes_deep', $value) : stripslashes($value);
|
||||||
$_COOKIE = array_map('stripslashes', $_COOKIE);
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once "sessions.php";
|
require_once "sessions.php";
|
||||||
|
|
Loading…
Reference in New Issue