diff options
author | nisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in> | 2013-03-25 06:59:53 +0100 |
---|---|---|
committer | nisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in> | 2013-03-25 06:59:53 +0100 |
commit | 7b1a2f1f40d940dde34e47b36808a84e0353af56 (patch) | |
tree | 818279b5b85c54fc396949395b1838e2b32d843f | |
parent | a5bcfb1d291d42521b0dc420b1b501c36710277d (diff) |
Changed "else if" to "elseif"
-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 7424a003a..6ee132005 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -159,7 +159,7 @@ class CI_Input { { $value = $array[$index]; } - else if(preg_match('/\[[^]]*\]$/', $index)) // Does the index contain array notation + elseif(preg_match('/\[[^]]*\]$/', $index)) // Does the index contain array notation { $key = $index; $container = $array; |