mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user