commit | 6b3bf4c026cb8cb85ce53a985c64b22006695ce6 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Tue Dec 02 18:04:41 2014 +0200 |
committer | Andrey Andreev <narf@devilix.net> | Tue Dec 02 18:04:41 2014 +0200 |
tree | 852ef3fc5a1c7bfb5a22aa4d5994e9058e1edb31 | |
parent | ef29f83f786aa968be3d9b7b55ccdc45f33c475d [diff] [blame] |
Fix an error from the previous commit
diff --git a/system/core/Input.php b/system/core/Input.php index d1353e9..0c6025d 100644 --- a/system/core/Input.php +++ b/system/core/Input.php
@@ -165,7 +165,7 @@ if (is_array($index)) { $output = array(); - foreach (array_keys($array) as $key) + foreach ($index as $key) { $output[$key] = $this->_fetch_from_array($array, $key, $xss_clean); }