aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/vips
diff options
context:
space:
mode:
authorElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2026-02-18 12:22:13 +0100
committerElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2026-02-18 12:22:13 +0100
commitf87679a9d8ef2ea25526897da8aa761287cacabc (patch)
tree3b99c6f94f8e84312e570958e5804f3b78a81203 /app/controllers/vips
parent2cf137042a708d49022ac90852d799b9123810c2 (diff)
order responses by autoincrement id instead of mkdate, fixes #6001
Closes #6001 Merge request studip/studip!4743
Diffstat (limited to 'app/controllers/vips')
-rw-r--r--app/controllers/vips/solutions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/vips/solutions.php b/app/controllers/vips/solutions.php
index aa8b02d..fe514a5 100644
--- a/app/controllers/vips/solutions.php
+++ b/app/controllers/vips/solutions.php
@@ -2449,7 +2449,7 @@ class Vips_SolutionsController extends AuthenticatedController
seminar_user.status IS NULL OR
seminar_user.status NOT IN ('dozent', 'tutor')
)
- ORDER BY etask_responses.mkdate DESC";
+ ORDER BY etask_responses.id DESC";
$result = $db->prepare($sql);
$result->execute([$course_id, $assignment_id]);