Commit 4d87565f authored by Taylor Otwell's avatar Taylor Otwell

workaround magic quotes.

parent 27502918
......@@ -110,6 +110,11 @@ switch (Request::method())
*/
unset($input[Request::spoofer]);
if (function_exists('get_magic_quotes_gpc') and get_magic_quotes_gpc())
{
$input = stripslashes($input);
}
Input::$input = $input;
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment