Add downtime name to the delete downtimes command form

refs #11398
This commit is contained in:
Eric Lippmann 2016-08-31 14:08:29 +02:00
parent 9c766c0241
commit 4fda29c1f0
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ class DeleteDowntimesCommandForm extends CommandForm
$delDowntime = new DeleteDowntimeCommand();
$delDowntime
->setDowntimeId($downtime->id)
->setDowntimeName($downtime->name)
->setIsService(isset($downtime->service_description));
$this->getTransport($this->request)->send($delDowntime);
}