From 3921314954fb851cf2b0980cabc750e0481d0de5 Mon Sep 17 00:00:00 2001 From: Rick Ellis Date: Tue, 12 Jun 2007 03:53:12 +0000 Subject: --- system/libraries/Input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/libraries') diff --git a/system/libraries/Input.php b/system/libraries/Input.php index 7b0282418..102e3b5eb 100644 --- a/system/libraries/Input.php +++ b/system/libraries/Input.php @@ -395,7 +395,7 @@ class CI_Input { return FALSE; } // IP cannot start with 0 - if (substr($ip_segments[0], 0, 1) == 0) + if (substr($ip_segments[0], 0, 1) == '0') { return FALSE; } -- cgit v1.2.3-24-g4f1b