diff options
author | nisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in> | 2013-03-26 14:36:40 +0100 |
---|---|---|
committer | nisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in> | 2013-03-26 14:36:40 +0100 |
commit | 408cbb4f3582ac64bb534a6539370992071d5950 (patch) | |
tree | 1c558aeacdd90b3ca848c453a1f8686e49aeefa3 | |
parent | 47ea5a8b99e17e9513be57d0af92f9e2637569b2 (diff) |
Code style fix
-rw-r--r-- | 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 1e21886ff..6690b7f2e 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -163,7 +163,7 @@ class CI_Input { for ($i = 0; $i < $count; $i++) { $key = trim($matches[0][$i], '[]'); - if($key === '') // Empty notation will return the value as array + if ($key === '') // Empty notation will return the value as array { break; } |