IcingaObject: recognize argument modifications

This commit is contained in:
Thomas Gelf 2015-12-03 19:41:58 +01:00
parent 3373b67d44
commit f49f14376b
1 changed files with 4 additions and 0 deletions

View File

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