From adb602328765057a42269bd1771d4a4b63c708bf Mon Sep 17 00:00:00 2001
From: Jan-Hendrik Willms <tleilax+studip@gmail.com>
Date: Fri, 21 Jun 2024 07:09:25 +0000
Subject: [PATCH] use correct variable name for assigned groups when editting a
 course date, fixes #4334

Closes #4334

Merge request studip/studip!3138
---
 app/views/course/timesrooms/editDate.php | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/app/views/course/timesrooms/editDate.php b/app/views/course/timesrooms/editDate.php
index c4c1495a6d7..3fbae994e91 100644
--- a/app/views/course/timesrooms/editDate.php
+++ b/app/views/course/timesrooms/editDate.php
@@ -1,3 +1,18 @@
+<?php
+/**
+ * @var Course_TimesroomsController $controller
+ * @var CourseDate $date
+ * @var Room[] $selectable_rooms
+ * @var QuickSearch|null $room_search
+ * @var bool $only_bookable_rooms
+ * @var int $preparation_time
+ * @var int $max_preparation_time
+ * @var CourseMember[] $teachers
+ * @var User[] $assigned_teachers
+ * @var Statusgruppen[] $groups
+ * @var Statusgruppen[] $assigned_groups
+ */
+?>
 <form action="<?= $controller->link_for('course/timesrooms/saveDate/' . $date->termin_id) ?>"
       method="post" class="default collapsable" <?= Request::int('fromDialog') ? 'data-dialog="size=big"' : '' ?>>
     <?= CSRFProtection::tokenTag() ?>
@@ -177,7 +192,7 @@
                 <ul>
                     <? foreach ($assigned_groups as $group) : ?>
                         <li data-selection-id="<?= htmlReady($group->id) ?>">
-                            <input type="hidden" name="assigned_groups[]"
+                            <input type="hidden" name="assigned-groups[]"
                                    value="<?= htmlReady($group->id) ?>">
 
                             <span class="studip-selection-label">
-- 
GitLab