From 2edef7c9ea6fec10b59683ce885fc1c7ff17fe6f Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Thu, 6 Feb 2020 07:42:17 +0000 Subject: [PATCH] fixed wrong indentation in the previous commit --- codepot/src/system/libraries/Input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codepot/src/system/libraries/Input.php b/codepot/src/system/libraries/Input.php index e41cc5ac..ebc04894 100644 --- a/codepot/src/system/libraries/Input.php +++ b/codepot/src/system/libraries/Input.php @@ -179,7 +179,7 @@ class CI_Input { } // 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); }