Skip to content
Snippets Groups Projects
Commit dfa4fe17 authored by Owen Bush's avatar Owen Bush Committed by Owen Bush
Browse files

Issue #3142276 by owenbush, the_glitch: edit Event Series form not saving

parent 28920b8d
No related branches found
No related tags found
No related merge requests found
......@@ -220,10 +220,12 @@ class EventCreationService {
$config['type'] = $user_input['recur_type'];
$config['excluded_dates'] = $config['included_dates'] = [];
$config['excluded_dates'] = [];
if (!empty($user_input['excluded_dates'])) {
$config['excluded_dates'] = $this->getDatesFromForm($user_input['excluded_dates']);
}
$config['included_dates'] = [];
if (!empty($user_input['included_dates'])) {
$config['included_dates'] = $this->getDatesFromForm($user_input['included_dates']);
}
......
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