those parts are extraneous

This commit is contained in:
czaks 2016-05-05 11:45:29 +02:00
parent 3eb755ee7e
commit cd01191072

View File

@ -212,17 +212,4 @@ function check_login($prompt = false) {
'boards' => explode(',', $user['boards'])
);
}
if ($config['debug'])
$parse_start_time = microtime(true);
// Fix for magic quotes
if (get_magic_quotes_gpc()) {
function strip_array($var) {
return is_array($var) ? array_map('strip_array', $var) : stripslashes($var);
}
$_GET = strip_array($_GET);
$_POST = strip_array($_POST);
}
}