Fixed bug #3 which caused xss_clean() to fail when calling input variables from arrays.

Closes #3.
This commit is contained in:
Abel Hoogeveen 2022-12-06 12:18:13 +01:00
parent d66c244931
commit 22e3ec2fd0
2 changed files with 3 additions and 5 deletions

View File

@ -9,7 +9,7 @@
}
],
"require": {
"php": ">=7.4.0",
"php": ">=8.1.0",
"fuzeworks/core": "~1.3.0",
"fuzeworks/mvcr": "~1.3.0",
"fuzeworks/objectstorage": "~1.3.0"

View File

@ -375,10 +375,8 @@ class Security {
// Is the string an array?
if (is_array($str))
{
while (list($key) = each($str))
{
$str[$key] = $this->xss_clean($str[$key]);
}
foreach ($str as $key => $value)
$str[$key] = $this->xss_clean($value);
return $str;
}