mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +00:00
just read hiddenConfFields but do not save
This commit is contained in:
parent
3ad1c9aa38
commit
97414a0971
|
@ -671,7 +671,7 @@ class Settings { /* {{{ */
|
||||||
$this->_useHomeAsRootFolder = Settings::boolval($tab["useHomeAsRootFolder"]);
|
$this->_useHomeAsRootFolder = Settings::boolval($tab["useHomeAsRootFolder"]);
|
||||||
$this->_titleDisplayHack = Settings::boolval($tab["titleDisplayHack"]);
|
$this->_titleDisplayHack = Settings::boolval($tab["titleDisplayHack"]);
|
||||||
$this->_showMissingTranslations = Settings::boolval($tab["showMissingTranslations"]);
|
$this->_showMissingTranslations = Settings::boolval($tab["showMissingTranslations"]);
|
||||||
$this->_hiddenConfFields = strval($tab["hiddenConfFields"]);
|
$this->_hiddenConfFields = explode(';', strval($tab["hiddenConfFields"]));
|
||||||
}
|
}
|
||||||
|
|
||||||
// XML Path: /configuration/advanced/authentication
|
// XML Path: /configuration/advanced/authentication
|
||||||
|
@ -1012,7 +1012,7 @@ class Settings { /* {{{ */
|
||||||
$this->setXMLAttributValue($node, "useHomeAsRootFolder", $this->_useHomeAsRootFolder);
|
$this->setXMLAttributValue($node, "useHomeAsRootFolder", $this->_useHomeAsRootFolder);
|
||||||
$this->setXMLAttributValue($node, "titleDisplayHack", $this->_titleDisplayHack);
|
$this->setXMLAttributValue($node, "titleDisplayHack", $this->_titleDisplayHack);
|
||||||
$this->setXMLAttributValue($node, "showMissingTranslations", $this->_showMissingTranslations);
|
$this->setXMLAttributValue($node, "showMissingTranslations", $this->_showMissingTranslations);
|
||||||
$this->setXMLAttributValue($node, "hiddenConfFields", $this->_hiddenConfFields);
|
// $this->setXMLAttributValue($node, "hiddenConfFields", $this->_hiddenConfFields);
|
||||||
|
|
||||||
// XML Path: /configuration/advanced/authentication
|
// XML Path: /configuration/advanced/authentication
|
||||||
$node = $this->getXMLNode($xml, '/configuration/advanced', 'authentication');
|
$node = $this->getXMLNode($xml, '/configuration/advanced', 'authentication');
|
||||||
|
|
Loading…
Reference in New Issue
Block a user