diff --git a/app/controllers/course/statusgroups.php b/app/controllers/course/statusgroups.php
index e9b2c431aacfd1fdfa848117a867c7d0122bc1cd..9a137384f5a3b04f4d37987862e8142fa18a9f4a 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 . ')';