mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
do not explode hiddenConfFields, because it's done when reading the xml
This commit is contained in:
parent
7af5857df3
commit
a18bc970df
|
@ -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;
|
||||
} /* }}} */
|
||||
|
|
Loading…
Reference in New Issue
Block a user