Bug #58339 ยป extGetFeAdminValue_Bug.diff
typo3/sysext/frontend/Classes/View/AdminPanelView.php | ||
---|---|---|
return TRUE;
|
||
}
|
||
// Override all settings with user TSconfig
|
||
if ($val && $GLOBALS['BE_USER']->extAdminConfig['override.'][$sectionName . '.'][$val]) {
|
||
if ($val && isset($GLOBALS['BE_USER']->extAdminConfig['override.'][$sectionName . '.'][$val])) {
|
||
return $GLOBALS['BE_USER']->extAdminConfig['override.'][$sectionName . '.'][$val];
|
||
}
|
||
if ($GLOBALS['BE_USER']->extAdminConfig['override.'][$sectionName]) {
|