aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/course/statusgroups.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2024-08-05 11:53:14 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2024-08-05 11:53:14 +0000
commita04081211893499a8221627bef238f6de4374dc9 (patch)
tree94c31f5f6371f5ef85da86b7988acbd12c0b25db /app/controllers/course/statusgroups.php
parent8b323add53b1633a372e6198b321b676110a259c (diff)
remove invalid access to description field, fixes #4449
Closes #4449 Merge request studip/studip!3238
Diffstat (limited to 'app/controllers/course/statusgroups.php')
-rw-r--r--app/controllers/course/statusgroups.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/app/controllers/course/statusgroups.php b/app/controllers/course/statusgroups.php
index e9b2c43..9a13738 100644
--- a/app/controllers/course/statusgroups.php
+++ b/app/controllers/course/statusgroups.php
@@ -251,7 +251,7 @@ class Course_StatusgroupsController extends AuthenticatedController
Icon::create('add')
)->asDialog('size=auto');
}
-
+
if (Config::get()->EXPORT_ENABLE) {
$export = new ExportWidget();
$export->addLink(
@@ -296,7 +296,7 @@ class Course_StatusgroupsController extends AuthenticatedController
Icon::create('arr_1down')
);
}
-
+
$sidebar->addWidget($actions);
}
@@ -941,11 +941,6 @@ class Course_StatusgroupsController extends AuthenticatedController
foreach ($singledates as $d) {
$name = $d->getFullName();
- // Append description to group title if applicable.
- if ($d->description) {
- $name .= ' ' . mila($d->description, 30);
- }
-
// Get room name and append to group title.
if ($room = $d->getRoomName()) {
$name .= ' (' . $room . ')';