fixed order import

This commit is contained in:
Claudio 2026-05-11 14:24:35 +02:00
parent 56eee99a67
commit 28c467d55e

View File

@ -91,7 +91,7 @@ $stmt = $pdo->prepare("
FROM datadb d
LEFT JOIN auth_users u ON d.user_id = u.id
{$baseWhere}
ORDER BY d.iddatadb DESC
ORDER BY d.excelrow ASC, d.iddatadb ASC
{$limitClause}
");
$stmt->execute($baseParams);