diff options
| author | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2021-10-20 16:41:06 +0200 |
|---|---|---|
| committer | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2021-10-20 16:41:06 +0200 |
| commit | 736bcffe50d2839e11412186ff1bab47a2c7c381 (patch) | |
| tree | 15ad5c9eef11fe7e0dd1a3c5ee64bd593dda0e29 /app/controllers/course/statusgroups.php | |
| parent | 80096fa23642814ad3702d1980128b372f72c938 (diff) | |
replace removed API call, fixes #352
Diffstat (limited to 'app/controllers/course/statusgroups.php')
| -rw-r--r-- | app/controllers/course/statusgroups.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/course/statusgroups.php b/app/controllers/course/statusgroups.php index f8378bc..79c595b 100644 --- a/app/controllers/course/statusgroups.php +++ b/app/controllers/course/statusgroups.php @@ -869,7 +869,7 @@ class Course_StatusgroupsController extends AuthenticatedController $dates = CourseDate::findBySeminar_id($this->course_id); $singledates = array_filter($dates, function ($d) { return !((bool) $d->metadate_id); }); foreach ($singledates as $d) { - $name = $d->toString(); + $name = $d->getFullname(); // Append description to group title if applicable. if ($d->description) { |
