summaryrefslogtreecommitdiffstats
path: root/system/core/Input.php
diff options
context:
space:
mode:
authornisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in>2013-03-25 06:59:53 +0100
committernisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in>2013-03-25 06:59:53 +0100
commit7b1a2f1f40d940dde34e47b36808a84e0353af56 (patch)
tree818279b5b85c54fc396949395b1838e2b32d843f /system/core/Input.php
parenta5bcfb1d291d42521b0dc420b1b501c36710277d (diff)
Changed "else if" to "elseif"
Diffstat (limited to 'system/core/Input.php')
-rw-r--r--system/core/Input.php2
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;