- Issue created by @szloredan
- Status changed to Needs review
9 months ago 1:24pm 22 February 2024
When using float values for the range slider the sorting from postQuery of the results can be wrong sometimes.
Run this code:
$x = [
['value' => 1.7530000209808],
['value' => 0.74042397737503]
];
uasort($x, function ($a, $b) {
return (int) $a['value'] - $b['value'];
});
Needs review
2.0
Code