Merge branch 'master' of git.icinga.org:icingaweb2-module-director

This commit is contained in:
Alexander Fuhr 2015-06-12 13:42:16 +02:00
commit f103434468
2 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,8 @@ class CustomVariableArray extends CustomVariable
return false;
}
return $var->getValue() === $this->getValue();
// TODO: better var handlig, fix this
return $var->value === $this->value;
}
public function setValue($value)

View File

@ -35,6 +35,7 @@ class IcingaConfig
->createFileFromDb('service')
->createFileFromDb('user')
;
return $this;
}