Corrige le filtre FILTER_FLOAT: pour la géolocalisation

This commit is contained in:
Fred Tempez 2024-08-15 17:54:22 +02:00
parent b8c5d613bc
commit 1a36e233be

View File

@ -432,7 +432,8 @@ class helper
$text = (int) $date->format('U');
break;
case self::FILTER_FLOAT:
$text = filter_var($text, FILTER_SANITIZE_NUMBER_FLOAT);
$text = str_replace(',', '.', $text); // Remplacer les virgules par des points
$text = filter_var($text, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION);
$text = (float) $text;
break;
case self::FILTER_ID: