Adds phpseclib version 3.
This commit is contained in:
@ -5294,13 +5294,14 @@ class Fields extends Structure
|
||||
}
|
||||
$this->setLayoutBuilder($nameSingleCode, $tabName, $name, $field);
|
||||
|
||||
// only load fields we want to search
|
||||
if ($dbSwitch && ComponentbuilderHelper::fieldCheck($typeName, 'search'))
|
||||
// load all fields that are in the database
|
||||
if ($dbSwitch)
|
||||
{
|
||||
// load a search array of view, field, and [encryption, type, tab]
|
||||
CFactory::_('Registry')->set('all_search_fields.' . $nameSingleCode . '.' . $name,
|
||||
// load array of view, field, and [encryption, type, tab]
|
||||
CFactory::_('Registry')->set('all_component_fields.' . $nameSingleCode . '.' . $name,
|
||||
[
|
||||
'name' => $name,
|
||||
'label' => $langLabel,
|
||||
'type' => $typeName,
|
||||
'title' => (isset($this->titleBuilder[$nameSingleCode]) && $name === $this->titleBuilder[$nameSingleCode]) ? true : false,
|
||||
'list' => $nameListCode,
|
||||
|
@ -24403,7 +24403,7 @@ class Interpretation extends Fields
|
||||
CFactory::_('Language')->set(
|
||||
CFactory::_('Config')->lang_target, $lang . '_GLOBAL_DESC', "The Global Parameters"
|
||||
);
|
||||
// add auto checin if required
|
||||
// add auto checkin if required
|
||||
if ($this->addCheckin)
|
||||
{
|
||||
$this->configFieldSets[] = Indent::_(2) . "<field";
|
||||
|
@ -1037,7 +1037,7 @@ class Infusion extends Interpretation
|
||||
}
|
||||
|
||||
// all fields stored in database
|
||||
CFactory::_('Content')->set('ARRAY_ALL_SEARCH_FIELDS', CFactory::_('Registry')->varExport('all_search_fields', 1));
|
||||
CFactory::_('Content')->set('ALL_COMPONENT_FIELDS', CFactory::_('Registry')->varExport('all_component_fields', 1));
|
||||
|
||||
// setup the layouts
|
||||
$this->setCustomViewLayouts();
|
||||
|
Reference in New Issue
Block a user