From 2dcc029e910f21b2b0655aa1e30abb1ad2d40255 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 6 Mar 2014 18:55:08 +0000 Subject: [PATCH] Two more title tabs for our command forms --- .../monitoring/application/controllers/CommandController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/monitoring/application/controllers/CommandController.php b/modules/monitoring/application/controllers/CommandController.php index 143c8d431..41532b2c2 100644 --- a/modules/monitoring/application/controllers/CommandController.php +++ b/modules/monitoring/application/controllers/CommandController.php @@ -566,6 +566,7 @@ class Monitoring_CommandController extends ActionController */ public function enablenotificationsAction() { + $this->addTitleTab('Enable Notifications'); $this->setSupportedParameters(array('host', 'service', 'global')); $form = new SingleArgumentCommandForm(); $form->setRequest($this->getRequest()); @@ -608,6 +609,7 @@ class Monitoring_CommandController extends ActionController */ public function scheduledowntimeAction() { + $this->addTitleTab('Schedule Downtime'); $this->setSupportedParameters(array('host', 'service')); $form = new ScheduleDowntimeForm(); $form->setRequest($this->getRequest());