IcingaArguments: correctly resolve them

This commit is contained in:
Thomas Gelf 2016-03-24 13:35:31 +01:00
parent 3c95fd7ec8
commit 1e1cc74b31
1 changed files with 6 additions and 1 deletions

View File

@ -262,7 +262,12 @@ class IcingaArguments implements Iterator, Countable, IcingaConfigRenderer
) {
$args = array();
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;