fixed wrong indentation in the previous commit

This commit is contained in:
hyung-hwan 2020-02-06 07:42:17 +00:00
parent 1e8cab123d
commit 2edef7c9ea

View File

@ -179,7 +179,7 @@ class CI_Input {
} }
// We strip slashes if magic quotes is on to keep things consistent // We strip slashes if magic quotes is on to keep things consistent
if ((!defined('PHP_MAJOR_VERSION') || (defined('PHP_MAJOR_VERSION') && PHP_MAJOR_VERSION < 7)) && get_magic_quotes_gpc()) if ((!defined('PHP_MAJOR_VERSION') || (defined('PHP_MAJOR_VERSION') && PHP_MAJOR_VERSION < 7)) && get_magic_quotes_gpc())
{ {
$str = stripslashes($str); $str = stripslashes($str);
} }