Fix for recurring date placeholders in maintenance scheduling form. Only actual for MySQL-community, tested on 5.7.20 and 5.7.22. (#8659)

This commit is contained in:
angryp
2018-05-08 07:32:40 +03:00
committed by Tony Murray
parent d204a1beca
commit 2d237710e2

View File

@ -100,8 +100,8 @@ if ($sub_type == 'new-maintenance') {
}
// recurring = 0 => empty no reccurency values to be sure.
$start_recurring_dt = '0000-00-00';
$end_recurring_dt = null;
$start_recurring_dt = '1970-01-02';
$end_recurring_dt = '1970-01-02';
$start_recurring_hr = '00:00:00';
$end_recurring_hr = '00:00:00';
$recurring_day = null;