summaryrefslogtreecommitdiffstats
path: root/system/core/Input.php
diff options
context:
space:
mode:
authorJoffrey Jaffeux <j.jaffeux@gmail.com>2012-06-06 17:57:40 +0200
committerJoffrey Jaffeux <j.jaffeux@gmail.com>2012-06-06 17:57:40 +0200
commit1eb9b127cfb3aef5d89b86a48e35b2f35cd17f81 (patch)
tree211bf7ac5b2e2914c5d2cde77676a63f266b3359 /system/core/Input.php
parentd284360a52691cd1f3a83ff51b498725146f81c7 (diff)
styling guide false -> FALSE
Diffstat (limited to 'system/core/Input.php')
-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;
}
// --------------------------------------------------------------------