From a18bc970df1ecf35315453acc8a4e87b38ee306d Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Thu, 24 Jun 2021 22:34:04 +0200 Subject: [PATCH] do not explode hiddenConfFields, because it's done when reading the xml --- views/bootstrap/class.Settings.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/views/bootstrap/class.Settings.php b/views/bootstrap/class.Settings.php index 3f0f25313..c31d4f06c 100644 --- a/views/bootstrap/class.Settings.php +++ b/views/bootstrap/class.Settings.php @@ -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; } /* }}} */