diff options
| author | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2026-02-18 12:22:13 +0100 |
|---|---|---|
| committer | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2026-02-18 12:22:13 +0100 |
| commit | f87679a9d8ef2ea25526897da8aa761287cacabc (patch) | |
| tree | 3b99c6f94f8e84312e570958e5804f3b78a81203 /app | |
| parent | 2cf137042a708d49022ac90852d799b9123810c2 (diff) | |
order responses by autoincrement id instead of mkdate, fixes #6001
Closes #6001
Merge request studip/studip!4743
Diffstat (limited to 'app')
| -rw-r--r-- | app/controllers/vips/solutions.php | 2 |
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]); |
