From 717d80807ed91cf69b319ce172e8868a54ff772f Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 6 Mar 2014 19:51:03 +0000 Subject: [PATCH] Remove flapping icons, that's already handled --- .../views/scripts/show/components/statusIcons.phtml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/monitoring/application/views/scripts/show/components/statusIcons.phtml b/modules/monitoring/application/views/scripts/show/components/statusIcons.phtml index 6221ca547..40f889ea8 100644 --- a/modules/monitoring/application/views/scripts/show/components/statusIcons.phtml +++ b/modules/monitoring/application/views/scripts/show/components/statusIcons.phtml @@ -14,8 +14,6 @@ use Icinga\Module\Monitoring\Object\Service; ($isService) ? $o->service_acknowledged : $o->host_acknowledged; $obj->in_downtime = ($isService) ? $o->in_downtime : $o->host_in_downtime; - $obj->is_flapping = - ($isService) ? $o->is_flapping : $o->host_is_flapping; $obj->notifications_enabled = ($isService) ? $o->notifications_enabled : $o->service_notifications_enabled; $obj->active_checks_enabled = @@ -32,10 +30,6 @@ if ($obj->acknowledged && ! $obj->in_downtime) { $i[] = $this->icon('acknowledgement.png', 'Acknowledged'); } -if ($obj->is_flapping) { - $i[] = $this->icon('flapping.png', 'Flapping'); -} - if (!$obj->notifications_enabled) { $i[] = $this->icon('notification_disabled.png', 'Notifications Disabled'); }