Skip to content

Commit

Permalink
Fix for recurring date placeholders in maintenance scheduling form. O…
Browse files Browse the repository at this point in the history
…nly actual for MySQL-community, tested on 5.7.20 and 5.7.22. (librenms#8659)
  • Loading branch information
angryp authored and TheMysteriousX committed May 20, 2018
1 parent ba897ab commit 121165a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html/includes/forms/schedule-maintenance.inc.php
Expand Up @@ -100,8 +100,8 @@
}

// 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;
Expand Down

0 comments on commit 121165a

Please sign in to comment.