aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/SemClass.php
diff options
context:
space:
mode:
authorAndré Noack <noack@data-quest.de>2024-10-18 11:18:49 +0000
committerAndré Noack <noack@data-quest.de>2024-10-18 11:18:49 +0000
commit1201e3d0f93420f76dcd917211121f2d8b79d05f (patch)
tree9bd4a08a64c74ec4f46d3e39099a728157a72ecf /lib/classes/SemClass.php
parent51d059a36f4a508807d9e7a35bda4dce35a8d17b (diff)
Resolve #3697 "Geplante Teilnehmendenzahl als Pflichtangabe bei der Anlage von LV"
Closes #3697 Merge request studip/studip!2566
Diffstat (limited to 'lib/classes/SemClass.php')
-rw-r--r--lib/classes/SemClass.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/classes/SemClass.php b/lib/classes/SemClass.php
index 2a038e2..e541d8c 100644
--- a/lib/classes/SemClass.php
+++ b/lib/classes/SemClass.php
@@ -386,6 +386,7 @@ class SemClass implements ArrayAccess
"show_raumzeit = :show_raumzeit, " .
"is_group = :is_group, " .
"unlimited_forbidden = :unlimited_forbidden, " .
+ "admission_turnout_mandatory = :admission_turnout_mandatory," .
"chdate = UNIX_TIMESTAMP() " .
"WHERE id = :id ".
"");
@@ -430,6 +431,7 @@ class SemClass implements ArrayAccess
'show_raumzeit' => (int) $this->data['show_raumzeit'],
'is_group' => (int) $this->data['is_group'],
'unlimited_forbidden' => (int) $this->data['unlimited_forbidden'],
+ 'admission_turnout_mandatory' => (int) $this->data['admission_turnout_mandatory'],
]);
}