diff --git a/app/time_conditions/time_condition_edit.php b/app/time_conditions/time_condition_edit.php index ef8f011931..c2ff55e645 100644 --- a/app/time_conditions/time_condition_edit.php +++ b/app/time_conditions/time_condition_edit.php @@ -562,7 +562,7 @@ require_once "resources/header.php"; $time_condition_vars["week"] = $text['label-week-of-year']; $time_condition_vars["mweek"] = $text['label-week-of-month']; $time_condition_vars["hour"] = $text['label-hour-of-day']; - $time_condition_vars["minute"] = $text['label-minute-of-hour']; + //$time_condition_vars["minute"] = $text['label-minute-of-hour']; //$time_condition_vars["minute-of-day"] = $text['label-minute-of-day']; $time_condition_vars["time-of-day"] = $text['label-time-of-day']; $time_condition_vars["date-time"] = $text['label-date-and-time']; @@ -685,13 +685,6 @@ require_once "resources/header.php"; } break; - case 'minute': //minutes of hour - for (m = 0; m <= 59; m++) { - sel_start.options[sel_start.options.length] = new Option(pad(m, 2), m); //pad function defined below - sel_stop.options[sel_stop.options.length] = new Option(pad(m, 2), m); - } - break; - case 'time-of-day': //time of day for (h = 0; h <= 23; h++) { for (m = 0; m <= 55; m += 5) {