parent
5b61b76076
commit
db03208c5b
|
@ -32,6 +32,9 @@ next (will be 1.8.0)
|
||||||
* FEATURE: UTF8 validation for failed imports gives better error message (#2143)
|
* FEATURE: UTF8 validation for failed imports gives better error message (#2143)
|
||||||
* FIX: LDAP Import is now able to paginate limited results (#2019)
|
* FIX: LDAP Import is now able to paginate limited results (#2019)
|
||||||
|
|
||||||
|
### Icinga Configuration
|
||||||
|
* FIX: Correctly render Service Dependencies with Array-style parent hosts (#2088)
|
||||||
|
|
||||||
### REST API
|
### REST API
|
||||||
* FEATURE: Self Service API ignores empty/missing properties (e.g. no address)
|
* FEATURE: Self Service API ignores empty/missing properties (e.g. no address)
|
||||||
|
|
||||||
|
|
|
@ -211,8 +211,8 @@ class IcingaDependency extends IcingaObject implements ExportInterface
|
||||||
if ($this->parentHostIsVar()) {
|
if ($this->parentHostIsVar()) {
|
||||||
return preg_replace(
|
return preg_replace(
|
||||||
'/\n$/m',
|
'/\n$/m',
|
||||||
$this->renderAssignFilterExtension(),
|
$this->renderAssignFilterExtension() . "\n",
|
||||||
parent::renderAssign_Filter() . "\n"
|
parent::renderAssign_Filter()
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return parent::renderAssign_Filter();
|
return parent::renderAssign_Filter();
|
||||||
|
|
Loading…
Reference in New Issue