Fix no value

remotes/origin/handlebars-approach
Joas Schilling 11 years ago
parent 5d84876ecd
commit 371a4d014a
  1. 4
      core/command/config/listconfigs.php

@ -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;
}
}

Loading…
Cancel
Save