diff options
| -rw-r--r-- | app/controllers/admin/courses.php | 3 |
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)) { |
