Bug #52629
closedTx_Workspaces_Service_Fehooks corrupts page output
0%
Description
The hook_eofe() inside Workspaces extension don't respect TypoScript setup with "config.admPanel = 0".
The situation:
- I have 2 pages.
- "Page A" has an active admin panel with an active simulated date.
- "Page B" has a TypoScript setup with "page.config.admPanel = 0".
The problem:
- In the HTML from "Page B", the content (script-tag) from typo3_src-4.7.15/typo3/sysext/workspaces/Resources/Private/Templates/Preview/Preview.html is rendered.
- This unnecessary code can break javascript.
A Solution?
Within typo3_src-4.7.15/typo3/sysext/workspaces/Classes/Service/Fehooks.php the admin panel visibility state should be respected. Maybe with a condition similar to this?
$tsfeBeUserAuth = t3lib_div::makeInstance('t3lib_tsfeBeUserAuth'); if(!$tsfeBeUserAuth->isAdminPanelVisible()) { return; }
Hope for your help and a fix for the next update. =)
Best regards,
David
Updated by Michael Stucki almost 11 years ago
- Category changed from Bugs to Workspaces
Updated by Michael Stucki almost 11 years ago
- Project changed from 624 to TYPO3 Core
- Category changed from Workspaces to Workspaces
Updated by Mathias Schreiber almost 10 years ago
- Target version set to 7.4 (Backend)
- Is Regression set to No
Updated by David Gurk almost 10 years ago
It seems that the new Class typo3_src-6.2.9/typo3/sysext/workspaces/Classes/Hook/TypoScriptFrontendControllerHook.php has a check:
if ($pObj->fePreview != 2) { return; }
BUT I can recreate the behaviour explained in the initial description. The content of typo3_src-6.2.9/typo3/sysext/workspaces/Resources/Private/Templates/Preview/Preview.html is still present, while admin panel is disabled.
Updated by Mathias Schreiber almost 10 years ago
- Target version changed from 7.4 (Backend) to 7.5
Updated by Oliver Hader about 9 years ago
- Target version changed from 7.5 to 7 LTS
- Complexity set to medium
Updated by Susanne Moog over 6 years ago
- Related to Epic #84044: Admin Panel Rework added
Updated by Benni Mack over 5 years ago
- Status changed from New to Rejected
Workspace Preview + Admin Panel is now completely decoupled since TYPO3 v9.
If this breaks your javascript code, it is safe to assume that you can override or unset the preview functionality of workspaces in a custom extension.