Parse prices directly using numberformatter (#4107)

This commit is contained in:
jekkos
2024-11-16 01:54:17 +01:00
committed by jekkos
parent 5bee124965
commit 2f365dce91
4 changed files with 30 additions and 42 deletions

View File

@@ -94,7 +94,7 @@ class Secure_Controller extends BaseController
*/
public function getCheckNumeric(): void
{
foreach($this->request->getGet(null, FILTER_SANITIZE_FULL_SPECIAL_CHARS) as $value)
foreach($this->request->getGet() as $value)
{
if (parse_decimals($value) === false)
{