MDL-60608 calendar: change eventdefaultcontext default to 0

This commit is contained in:
Simey Lameze 2017-10-27 14:19:16 +08:00
parent d12e409784
commit 0d049757c0
3 changed files with 3 additions and 3 deletions

View file

@ -74,7 +74,7 @@ class calendar_day_exporter extends exporter {
], ],
'defaulteventcontext' => [ 'defaulteventcontext' => [
'type' => PARAM_INT, 'type' => PARAM_INT,
'default' => null, 'default' => 0,
], ],
'filter_selector' => [ 'filter_selector' => [
'type' => PARAM_RAW, 'type' => PARAM_RAW,

View file

@ -74,7 +74,7 @@ class calendar_upcoming_exporter extends exporter {
], ],
'defaulteventcontext' => [ 'defaulteventcontext' => [
'type' => PARAM_INT, 'type' => PARAM_INT,
'default' => null, 'default' => 0,
], ],
'filter_selector' => [ 'filter_selector' => [
'type' => PARAM_RAW, 'type' => PARAM_RAW,

View file

@ -171,7 +171,7 @@ class month_exporter extends exporter {
], ],
'defaulteventcontext' => [ 'defaulteventcontext' => [
'type' => PARAM_INT, 'type' => PARAM_INT,
'default' => null, 'default' => 0,
], ],
]; ];
} }