From e8aadbb30b5811fec1e3f6e6340ecaec54746354 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Wed, 17 Feb 2016 20:00:48 +0100 Subject: [PATCH] IcingaObject: fix issue with disabled property --- library/Director/Objects/IcingaObject.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Director/Objects/IcingaObject.php b/library/Director/Objects/IcingaObject.php index 8727fd5c..01335bb7 100644 --- a/library/Director/Objects/IcingaObject.php +++ b/library/Director/Objects/IcingaObject.php @@ -225,7 +225,7 @@ abstract class IcingaObject extends DbObject implements IcingaConfigRenderer protected function setDisabled($disabled) { - return parent::set($this->normalizeBoolean($disabled)); + return parent::reallySet('disabled', $this->normalizeBoolean($disabled)); } public function markForRemoval($remove = true)