For #3730. This replaces FILTER_SANITIZE_STRING with FILTER_SANITIZE_FULL_SPECIAL_CHARS.

This commit is contained in:
Steve Ireland
2023-04-09 18:58:14 -04:00
parent 0bfa56f64a
commit 47f419368b
21 changed files with 285 additions and 285 deletions

View File

@@ -72,7 +72,7 @@ class Secure_Controller extends BaseController
{
$result = TRUE;
foreach($this->request->getVar(NULL, FILTER_SANITIZE_STRING) as $str)
foreach($this->request->getVar(NULL, FILTER_SANITIZE_FULL_SPECIAL_CHARS) as $str)
{
$result &= parse_decimals($str);
}