Merge pull request #171 from catalyst/issue170

Do not check event calendar capability when running cli/finish.php
This commit is contained in:
Brendan Heywood
2020-02-04 13:14:20 +10:00
committed by GitHub

View File

@@ -65,7 +65,7 @@ class calendar {
debugging('Cannot update calendar entry for outage #'.$outage->id.', event not found. Creating it...');
self::create($outage);
} else {
$event->update(self::create_data($outage));
$event->update(self::create_data($outage), false);
}
}