diff options
author | Joffrey Jaffeux <j.jaffeux@gmail.com> | 2012-06-06 17:57:40 +0200 |
---|---|---|
committer | Joffrey Jaffeux <j.jaffeux@gmail.com> | 2012-06-06 17:57:40 +0200 |
commit | 1eb9b127cfb3aef5d89b86a48e35b2f35cd17f81 (patch) | |
tree | 211bf7ac5b2e2914c5d2cde77676a63f266b3359 | |
parent | d284360a52691cd1f3a83ff51b498725146f81c7 (diff) |
styling guide false -> FALSE
-rwxr-xr-x | system/core/Input.php | 2 |
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; } // -------------------------------------------------------------------- |