mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 16:54:06 +02:00
IcingaArguments: correctly resolve them
This commit is contained in:
parent
3c95fd7ec8
commit
1e1cc74b31
@ -262,7 +262,12 @@ class IcingaArguments implements Iterator, Countable, IcingaConfigRenderer
|
|||||||
) {
|
) {
|
||||||
$args = array();
|
$args = array();
|
||||||
foreach ($this->arguments as $arg) {
|
foreach ($this->arguments as $arg) {
|
||||||
$args[$arg->argument_name] = $arg->toPlainObject($resolved, $skipDefaults);
|
$args[$arg->argument_name] = $arg->toPlainObject(
|
||||||
|
$resolved,
|
||||||
|
$skipDefaults,
|
||||||
|
null,
|
||||||
|
$resolveIds
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $args;
|
return $args;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user