Try to fix checkNumeric (#4082)

This commit is contained in:
jekkos
2024-10-05 02:35:17 +02:00
parent b8a74ba30a
commit f3277b0d38

View File

@@ -96,7 +96,7 @@ class Secure_Controller extends BaseController
{
foreach($this->request->getGet(null, FILTER_SANITIZE_FULL_SPECIAL_CHARS) as $value)
{
if (!parse_decimals($value))
if (parse_decimals($value) === false)
{
echo 'false';
return;