IcingaObject: recognize argument modifications

This commit is contained in:
Thomas Gelf 2015-12-03 19:41:58 +01:00
parent 3373b67d44
commit f49f14376b

View File

@ -121,6 +121,10 @@ abstract class IcingaObject extends DbObject implements IcingaConfigRenderer
return true; return true;
} }
if ($this->supportsArguments() && $this->arguments !== null && $this->arguments()->hasBeenModified()) {
return true;
}
return parent::hasBeenModified(); return parent::hasBeenModified();
} }