david-nagel

Results 1 comments of david-nagel

get_magic_quotes_gpc returns always false since PHP 5.4: https://www.php.net/manual/en/function.get-magic-quotes-gpc.php If you're using a more recent version it should be safe to replace `function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc() ? stripslashes($value) : $value;` with `$value`