Project

General

Profile

Actions

Bug #43447

closed

admPanel.override.edit.editNoPopup = 1 doesn't work

Added by Frank Frewer over 11 years ago. Updated over 4 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
AdminPanel
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;
        }


Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Feature #61095: feedit - Bring back editNoPopup?Closed2014-08-20

Actions
Related to TYPO3 Core - Epic #84044: Admin Panel ReworkClosedSusanne Moog2010-08-11

Actions
Actions #1

Updated by Mathias Schreiber over 9 years ago

  • Target version set to 7.2 (Frontend)
  • Is Regression set to No
Actions #2

Updated by Benni Mack almost 9 years ago

  • Target version changed from 7.2 (Frontend) to 7.4 (Backend)
Actions #3

Updated by Susanne Moog over 8 years ago

  • Target version changed from 7.4 (Backend) to 7.5
Actions #4

Updated by Benni Mack over 8 years ago

  • Target version changed from 7.5 to 7 LTS
Actions #5

Updated by Mathias Schreiber over 8 years ago

  • Target version deleted (7 LTS)
Actions #6

Updated by Riccardo De Contardi about 6 years ago

Actions #7

Updated by Susanne Moog over 5 years ago

  • Category set to AdminPanel
Actions #8

Updated by Susanne Moog over 5 years ago

  • Target version set to 9 LTS
Actions #9

Updated by Susanne Moog over 5 years ago

  • Target version changed from 9 LTS to Candidate for patchlevel
Actions #10

Updated by Susanne Moog over 4 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

Also available in: Atom PDF