From 4e70a4a0033242d567ed037151b0c31f333bcb0c Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 18 Mar 2016 19:54:08 +0100 Subject: [PATCH] TypeFilterSet: fix flipped flapping states --- library/Director/IcingaConfig/TypeFilterSet.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Director/IcingaConfig/TypeFilterSet.php b/library/Director/IcingaConfig/TypeFilterSet.php index 280e2049..dffd4cf0 100644 --- a/library/Director/IcingaConfig/TypeFilterSet.php +++ b/library/Director/IcingaConfig/TypeFilterSet.php @@ -31,8 +31,8 @@ class TypeFilterSet extends ExtensibleSet 'DowntimeRemoved' => $this->translate('Downtime removed'), ), $this->translate('Flapping') => array( - 'FlappingStart' => $this->translate('Flapping ends'), - 'FlappingEnd' => $this->translate('Flapping starts') + 'FlappingStart' => $this->translate('Flapping starts'), + 'FlappingEnd' => $this->translate('Flapping ends') ) ); }