Fix that syslog or file config elements are not shown in case of no default

This commit is contained in:
Johannes Meyer 2014-10-17 13:11:25 +02:00
parent 24b6274f01
commit 768d8da4f8
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class LoggingConfigForm extends Form
);
}
if (isset($formData['logging_log']) && $formData['logging_log'] === 'syslog') {
if (false === isset($formData['logging_log']) || $formData['logging_log'] === 'syslog') {
$this->addElement(
'text',
'logging_application',