The magic quotes undo should apply to GET variables as well.

develop
Sven Slootweg 11 years ago
parent 21f3cea18f
commit 9ec934e8c7

@ -51,4 +51,9 @@ if(get_magic_quotes_gpc())
{
$var = stripslashes($var);
}
foreach($_GET as &$var)
{
$var = stripslashes($var);
}
}

Loading…
Cancel
Save