Repair command links

fixes #9392
This commit is contained in:
Alexander A. Klimov 2015-06-10 14:29:44 +02:00
parent ca08deb5e1
commit e764bfb95d
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
echo $this->qlink( echo $this->qlink(
$this->translate('Send notification'), $this->translate('Send notification'),
'monitoring/host/send-custom-notification', 'monitoring/host/send-custom-notification',
array('host_name' => $object->getName()), array('host' => $object->getName()),
array( array(
'icon' => 'bell', 'icon' => 'bell',
'data-base-target' => '_self', 'data-base-target' => '_self',
@ -23,7 +23,7 @@
echo $this->qlink( echo $this->qlink(
$this->translate('Send notification'), $this->translate('Send notification'),
'monitoring/service/send-custom-notification', 'monitoring/service/send-custom-notification',
array('host_name' => $object->getHost()->getName(), 'service_description' => $object->getName()), array('host' => $object->getHost()->getName(), 'service' => $object->getName()),
array( array(
'icon' => 'bell', 'icon' => 'bell',
'data-base-target' => '_self', 'data-base-target' => '_self',