Actions
Bug #53918
closedEpic #55070: Workpackages
Epic #55065: WP: Overall System Performance (Backend and Frontend)
Bug #52949: Speed decrease since 4.5
t3skin calls addIconSprite for each language
Start date:
2013-11-25
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.3
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
Description
The t3skin extension adds icon sprites for each language. And that's great, but not so great that it takes 22 ms to add all the icon sprites for each language and an overlay icon because the addIconSprite is called for each language.
Instead the iconArray can be built up and submitted once to addIconSprite.
This saves 248 calls to addIconSprite which calls array_merge etc.
This saves ~ 22 ms for each request.
Actions