summaryrefslogtreecommitdiffstats
path: root/system/core
diff options
context:
space:
mode:
authorJoffrey Jaffeux <j.jaffeux@gmail.com>2012-06-06 14:39:02 +0200
committerJoffrey Jaffeux <j.jaffeux@gmail.com>2012-06-06 14:39:02 +0200
commit0723617703dda3660597d9cdef59e7cdded1c497 (patch)
tree1c5656de4cddc83e576a65abdd5dfd49438a6dfb /system/core
parent6c8515459e4c631b0882532e8c44ee6435fd3809 (diff)
follow styling guide
Diffstat (limited to 'system/core')
-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 6a5a9d8f0..ac67aaf4f 100755
--- a/system/core/Input.php
+++ b/system/core/Input.php
@@ -383,7 +383,7 @@ class CI_Input {
*/
public function valid_ip($ip)
{
- if($this->ip_version($ip) === '4')
+ if ($this->ip_version($ip) === '4')
{
return (bool) filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4);
}