Actions
Bug #43447
closedadmPanel.override.edit.editNoPopup = 1 doesn't work
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
AdminPanel
Target version:
Start date:
2012-11-29
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
The User TSconfig 'admPanel.module.edit.forceNoPopup' is deprecated, but 'admPanel.override.edit.editNoPopup = 1' doesn't work.
typo3/sysext/feedit/view/class.tx_feedit_editpanel.php / function 'editPanelLinkWrap_doWrap':
if ($GLOBALS['BE_USER']->uc['TSFE_adminConfig']['edit_editNoPopup'] || $GLOBALS['BE_USER']->extAdminConfig['module.']['edit.']['forceNoPopup']) { ...
$GLOBALS['BE_USER']->uc['TSFE_adminConfig']['edit_editNoPopup'] is not true although 'admPanel.override.edit.editNoPopup = 1' is set in user TSconfig.
In typo3/sysext/cms/tslib/class.tslib_adminpanel.php / function 'initialize' $GLOBALS['BE_USER']->uc['TSFE_adminConfig']['edit_editNoPopup'] is set only under this condition:
if (t3lib_div::_GP('ADMCMD_editIcons')) { $GLOBALS['TSFE']->displayFieldEditIcons=1; $GLOBALS['BE_USER']->uc['TSFE_adminConfig']['edit_editNoPopup'] = 1; }
Should be expanded:
if ($this->extGetFeAdminValue('edit', 'editNoPopup')) { $GLOBALS['BE_USER']->uc['TSFE_adminConfig']['edit_editNoPopup'] = 1; } if (t3lib_div::_GP('ADMCMD_editIcons')) { $GLOBALS['TSFE']->displayFieldEditIcons=1; $GLOBALS['BE_USER']->uc['TSFE_adminConfig']['edit_editNoPopup'] = 1; }
Updated by Mathias Schreiber almost 10 years ago
- Target version set to 7.2 (Frontend)
- Is Regression set to No
Updated by Benni Mack over 9 years ago
- Target version changed from 7.2 (Frontend) to 7.4 (Backend)
Updated by Susanne Moog over 9 years ago
- Target version changed from 7.4 (Backend) to 7.5
Updated by Benni Mack about 9 years ago
- Target version changed from 7.5 to 7 LTS
Updated by Riccardo De Contardi over 6 years ago
- Related to Epic #84044: Admin Panel Rework added
Updated by Susanne Moog about 6 years ago
- Target version changed from 9 LTS to Candidate for patchlevel
Updated by Susanne Moog almost 5 years ago
- Status changed from New to Closed
As feedit was moved out of the core and the admin panel was refectored I'm closing the issue. If this (or a similar issue) pops up again, please open a new issue.
Actions