From b4f3c4260ad70cf3cd60d0931f0c4cd600847e32 Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Fri, 27 Feb 2026 12:25:00 +0100 Subject: [PATCH] fix: correct syntax error in FCP sorting callback --- application/Preorder/PreorderController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Preorder/PreorderController.php b/application/Preorder/PreorderController.php index 75539694f..702b9d3df 100644 --- a/application/Preorder/PreorderController.php +++ b/application/Preorder/PreorderController.php @@ -1470,7 +1470,7 @@ class PreorderController extends mfBaseController { $fcps ); - usort($result, fn($a, b) => $b['preorder_count'] <=> $a['preorder_count']); + usort($result, fn($a, $b) => $b['preorder_count'] <=> $a['preorder_count']); return $result; }