Bug #56250
closedClickmenu show_item.php is broken
100%
Description
If you open a info pop-up (show_item.php) there is a icon shown in the left upper corner.
This icon is has a Clickmenu.show() but this doesn't work.
Uncaught ReferenceError: Clickmenu is not defined
Updated by Joh. Feustel over 10 years ago
The following change will make the context menu appear but it will not work since other objects and dependencies are still missing. Only 'show' is working.
--- a/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php +++ b/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php @@ -435,7 +435,8 @@ class ElementInformationController { * @return void */ public function printContent() { - echo $this->doc->startPage('') . + echo $this->doc->getContextMenuCode() . + $this->doc->startPage('') . $this->doc->insertStylesAndJS($this->content) . $this->doc->endPage(); }
Updated by Gerrit Code Review over 10 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/30760
Updated by Gerrit Code Review over 10 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/30760
Updated by Markus Klein over 10 years ago
- Status changed from Under Review to Accepted
Updated by Gerrit Code Review over 10 years ago
- Status changed from Accepted to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/30883
Updated by Frans Saris over 10 years ago
- Complexity changed from no-brainer to easy
Updated by Gerrit Code Review over 10 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/30883
Updated by Gerrit Code Review over 10 years ago
Patch set 1 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/31358
Updated by Frans Saris over 10 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 7b1ba4cd81eb3d7ab0293c0acf2c87c7ab197b28.