Actions
Bug #27266
closedcustomMediaRender Hook
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2011-06-06
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
The last hook overrides the previous edition of the hooks. see file sysext/cms/tslib/content/class.tslib_content_media.php line 230th. foreach overrides $content, but should add.
$content = $hookObj->customMediaRender($renderType, $conf, $this);
bugfix:
$content .= $hookObj->customMediaRender($renderType, $conf, $this);
Actions