Actions
Bug #77995
closedMenu icons in upper menubar of backend not shown
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2016-09-19
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
Description
In TYPO3\CMS\Core\Imaging\Icon.php the function getMarkup contains:
if ($alternativeMarkupIdentifier !== null && isset($this->alternativeMarkups[$alternativeMarkupIdentifier]))
This should be:
if ($alternativeMarkupIdentifier !== null && ($this->alternativeMarkups[$alternativeMarkupIdentifier]))
The icons of the menu items in the upperbar are rendered with render('inline'). In array $this->alternativeMarkups 'inline' is not present but isset($this->alternativeMarkups['inline']) returns true while $this->alternativeMarkups[$alternativeMarkupIdentifier]==false
Actions