commit | 4316a157c27a3721dbfd8a817bf8cbffb1fe371f | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Fri Jan 20 15:46:17 2017 +0200 |
committer | Andrey Andreev <narf@devilix.net> | Fri Jan 20 15:46:17 2017 +0200 |
tree | c8445f076d1552aedcdd003e2645c01f85a4fa24 | |
parent | 93141a13e77a88be044e4c7f51ba3c2a35bf0ccc [diff] |
Don't use each() Will be deprecated in PHP 7.2
diff --git a/system/core/Security.php b/system/core/Security.php index bacbb78..082ffa9 100644 --- a/system/core/Security.php +++ b/system/core/Security.php
@@ -354,9 +354,9 @@ // Is the string an array? if (is_array($str)) { - while (list($key) = each($str)) + foreach ($str as $key => &$value) { - $str[$key] = $this->xss_clean($str[$key]); + $str[$key] = $this->xss_clean($value); } return $str;