Actions
Bug #22370
closedContent Element Media and Render Type "HTML Embed Element" not working
Start date:
2010-04-01
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Add a Content Element Media, Media File was a local .wmv and Render Type was set to "HTML Embed Element". No output in frontend.
In class.tslib_content, function MEDIA we find a switch ($renderType) that supports the following cases "swf", "qt", "media" and a default-case for everything else, that looks for a hook.
renderType from the backend for "HTML Embed Element" is set to "embed" so we run into the default-case which looks for a hook which is not available. instead the case "media" renders the excpected embed-element.
for me to get the embed-element working i just changed
case 'media':
...
break;
to
case 'embed':
case 'media':
...
break;
issue is in 4.3.0 and 4.3.2
(issue imported from #M13991)
Files
Actions