aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2025-01-29 08:02:20 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2025-01-29 08:02:20 +0000
commit4fd07adfdf6304e2fec3f56d9fad5148a5e850d2 (patch)
tree05dc059fd3cc3ad516ef09adc000eea1a083d38e
parent9070a8d19a144525114032cc6f051893cb78146e (diff)
use correct method SeminarCycleDate::getMostUsedFreetextRoomName(), fixes #5200
Closes #5200 Merge request studip/studip!3886
-rw-r--r--app/controllers/course/statusgroups.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/course/statusgroups.php b/app/controllers/course/statusgroups.php
index 24efa02..8c5d28a 100644
--- a/app/controllers/course/statusgroups.php
+++ b/app/controllers/course/statusgroups.php
@@ -901,7 +901,7 @@ class Course_StatusgroupsController extends AuthenticatedController
if ($room = $c->getMostBookedRoom()) {
$name .= ' (' . $room->name . ')';
} else {
- $room = $c->getMostBookedFreetextRoom();
+ $room = $c->getMostUsedFreetextRoomName();
if ($room) {
$name .= ' (' . $room . ')';
}