mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-27 01:39:35 -05:00
BusinessProcess: fix "bp nodes can be stored twice"
This commit is contained in:
parent
792cf35a38
commit
f5e3bc4c01
1 changed files with 2 additions and 0 deletions
|
|
@ -619,9 +619,11 @@ class BusinessProcess
|
|||
|
||||
$rendered = array();
|
||||
foreach ($this->getChildren() as $child) {
|
||||
$rendered[(string) $child] = true;
|
||||
$conf .= $child->toLegacyConfigString($rendered);
|
||||
}
|
||||
foreach ($this->getUnboundNodes() as $node) {
|
||||
$rendered[(string) $child] = true;
|
||||
$conf .= $node->toLegacyConfigString($rendered);
|
||||
}
|
||||
return $conf . "\n";
|
||||
|
|
|
|||
Loading…
Reference in a new issue