From 8a25bff8a6fe8115ddf55ac82aa45efff7259fc3 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 20 Jan 2014 11:12:03 +0100 Subject: [PATCH] Fix that dis-/enabling notifications affect active checks fixes #5500 --- lib/icinga/service-notification.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/icinga/service-notification.cpp b/lib/icinga/service-notification.cpp index 38873eeaa..8fbb4fdba 100644 --- a/lib/icinga/service-notification.cpp +++ b/lib/icinga/service-notification.cpp @@ -169,7 +169,7 @@ bool Service::GetEnableNotifications(void) const void Service::SetEnableNotifications(bool enabled, const String& authority) { - SetOverrideEnableActiveChecks(enabled); + SetOverrideEnableNotifications(enabled); OnEnableNotificationsChanged(GetSelf(), enabled, authority); }