Skip to content
Snippets Groups Projects
Commit 2e754344 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

use valid value for column repetition_type when creating events for consultation slots, fixes #4379

Closes #4379

Merge request studip/studip!3187
parent 7102798d
No related branches found
No related tags found
No related merge requests found
......@@ -216,7 +216,7 @@ class ConsultationSlot extends SimpleORMap
$event->end = $this->end_time;
$event->access = 'PRIVATE';
$event->location = $this->block->room;
$event->repetition_type = '';
$event->repetition_type = 'SINGLE';
$event->store();
$calendar_event = new CalendarDateAssignment();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment