Файл: adultscript-2.0.3-pro/files/libraries/framework/compat/enviroment/magic_quotes_gpc_off.php
Строк: 14
<?php
defined('_VALID') or die('Restricted Access!');
if (get_magic_quotes_runtime() OR get_magic_quotes_gpc()) {
if (get_magic_quotes_runtime()) {
set_magic_quotes_runtime(0);
}
$input = array(&$_GET, &$_POST, &$_REQUEST, &$_COOKIE);
while (list($k,$v) = each($input)) {
foreach ($v as $key => $val) {
if (!is_array($val)) {
$input[$k][$key] = stripslashes($val);
continue;
}
$input[] =& $input[$k][$key];
}
}
unset($input);
}
?>