Select downtime name in the downtime detail view

refs #11398
This commit is contained in:
Eric Lippmann 2016-08-31 14:07:15 +02:00
parent 57406245ca
commit c982c96e16
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,7 @@ class DowntimeController extends Controller
'is_fixed' => 'downtime_is_fixed',
'is_in_effect' => 'downtime_is_in_effect',
'entry_time' => 'downtime_entry_time',
'name' => 'downtime_name',
'host_state',
'service_state',
'host_name',
@ -91,6 +92,7 @@ class DowntimeController extends Controller
->populate(array(
'downtime_id' => $this->downtime->id,
'downtime_is_service' => $isService,
'downtime_name' => $this->downtime->name,
'redirect' => Url::fromPath('monitoring/list/downtimes'),
))
->handleRequest();