summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsystem/core/Input.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Input.php b/system/core/Input.php
index 36ff96d03..c1f2086c4 100755
--- a/system/core/Input.php
+++ b/system/core/Input.php
@@ -403,7 +403,7 @@ class CI_Input {
*/
public function ip_version($ip)
{
- return strpos($ip, ":") === false ? 4 : 6;
+ return strpos($ip, ":") === FALSE ? 4 : 6;
}
// --------------------------------------------------------------------