mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 09:35:00 +00:00
do not call get_magic_quotes_gpc() anymore
This commit is contained in:
parent
fb366307bf
commit
c0120b0a1d
|
@ -47,7 +47,7 @@ if(isset($settings->_maxExecutionTime)) {
|
|||
}
|
||||
}
|
||||
|
||||
if (get_magic_quotes_gpc()) {
|
||||
if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {
|
||||
$process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
|
||||
while (list($key, $val) = each($process)) {
|
||||
foreach ($val as $k => $v) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user