do not explode hiddenConfFields, because it's done when reading the xml

This commit is contained in:
Uwe Steinmann 2021-06-24 22:34:04 +02:00
parent 7af5857df3
commit a18bc970df

View File

@ -100,8 +100,7 @@ class SeedDMS_View_Settings extends SeedDMS_Theme_Style {
$settings = $this->params['settings'];
if(!($hcf = $settings->_hiddenConfFields))
return true;
$hcfa = explode(';', $hcf);
if(in_array($name, $hcfa))
if(in_array($name, $hcf))
return false;
return true;
} /* }}} */