IcingaObject: fix issue with disabled property

This commit is contained in:
Thomas Gelf 2016-02-17 20:00:48 +01:00
parent 6d1b44f56e
commit e8aadbb30b
1 changed files with 1 additions and 1 deletions

View File

@ -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)