Commit 9c7f5382 authored by Ad Schellevis's avatar Ad Schellevis Committed by Franco Fichtner

(legacy) fix another php warning

parent bf9a9697
......@@ -1393,7 +1393,7 @@ include("head.inc");
//build list of schedules
$schedules = array();
$schedules[] = "none";//leave none to leave rule enabled all the time
if(is_array($config['schedules']['schedule'])) {
if(isset($config['schedules']['schedule'])) {
foreach ($config['schedules']['schedule'] as $schedule) {
if ($schedule['name'] <> "")
$schedules[] = $schedule['name'];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment