Fix no value

This commit is contained in:
Joas Schilling 2015-04-30 17:33:13 +02:00
parent 5d84876ecd
commit 371a4d014a

View file

@ -122,8 +122,8 @@ class ListConfigs extends Base {
continue;
}
$value = $this->systemConfig->getValue($key, new \Exception('Not set'));
if (!($value instanceof \Exception)) {
$value = $this->systemConfig->getValue($key, serialize(null));
if ($value !== 'N;') {
$configs[$key] = $value;
}
}