parent
0493f93a74
commit
6e57e6dc98
|
@ -4,6 +4,16 @@
|
|||
Please make sure to always read our [Upgrading](05-Upgrading.md) documentation
|
||||
before switching to a new version.
|
||||
|
||||
v1.11.1 (unreleased)
|
||||
--------------------
|
||||
|
||||
### Internals
|
||||
* FIX: UserGroup creation failed since v1.10.0 (#2784)
|
||||
|
||||
### Fixed issues
|
||||
* You can find issues and feature requests related to this release on our
|
||||
[roadmap](https://github.com/Icinga/icingaweb2-module-director/milestone/35?closed=1)
|
||||
|
||||
v1.11.0
|
||||
-------
|
||||
|
||||
|
|
|
@ -43,14 +43,16 @@ abstract class IcingaObjectGroup extends IcingaObject implements ExportInterface
|
|||
return;
|
||||
}
|
||||
} else {
|
||||
if ($this->get('assign_filter') === null) {
|
||||
if ($this->hasProperty('assign_filter') && $this->get('assign_filter') === null) {
|
||||
$this->memberShipShouldBeRefreshed = false;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->hasProperty('assign_filter')) {
|
||||
$this->memberShipShouldBeRefreshed = true;
|
||||
}
|
||||
}
|
||||
|
||||
protected function notifyResolvers()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue