fix: correct syntax error in FCP sorting callback

This commit is contained in:
2026-02-27 12:25:00 +01:00
parent 315f85356c
commit b4f3c4260a

View File

@@ -1470,7 +1470,7 @@ class PreorderController extends mfBaseController {
$fcps $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; return $result;
} }