aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Strohm <strohm@data-quest.de>2026-03-17 11:36:14 +0000
committerMoritz Strohm <strohm@data-quest.de>2026-03-17 11:36:14 +0000
commit25ed2699b087ccc852f091903490720c3f46fb34 (patch)
tree5a7c0bdba4ae45891f858bb04947102675ef82ea
parentf7d5e891b3981273a35174ff90784e83ed9558f6 (diff)
admin/courses/export_csv: use the same room format as the view, really fixes #6365
Closes #6365 Merge request studip/studip!4832 (cherry picked from commit ee78e07f006b7f80d80745f5fb0c6ce3eb73962e) 24328ec3 admin/courses/export_csv: use the same room format as the view Co-authored-by: Moritz Strohm <strohm@data-quest.de>
-rw-r--r--app/controllers/admin/courses.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/admin/courses.php b/app/controllers/admin/courses.php
index bdadc3e..4c75d02 100644
--- a/app/controllers/admin/courses.php
+++ b/app/controllers/admin/courses.php
@@ -1004,7 +1004,8 @@ class Admin_CoursesController extends AuthenticatedController
}
if (in_array('room_time', $filter_config)) {
- $row['room_time'] = (string) $course->getAllDatesInSemester($this->semester);
+ $course_date_list = $course->getAllDatesInSemester($this->semester);
+ $row['room_time'] = implode("\n", $course_date_list->toStringArray(false, true));
}
if (in_array('requests', $filter_config)) {