fixed order lines

This commit is contained in:
2026-07-30 13:18:27 +02:00
parent eb34cba7bb
commit e7d733a136
+1 -1
View File
@@ -99,7 +99,7 @@ $stmt = $pdo->prepare("
FROM datadb d
LEFT JOIN auth_users u ON d.user_id = u.id
{$baseWhere}
ORDER BY d.excelrow ASC, d.iddatadb ASC
ORDER BY CAST(d.excelrow AS UNSIGNED) ASC, d.excelrow ASC, d.iddatadb ASC
{$limitClause}
");
$stmt->execute($baseParams);