Bug #22370
closedContent Element Media and Render Type "HTML Embed Element" not working
0%
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
Updated by Administrator Admin over 14 years ago
I can confirm this. Patch attached.
Updated by Steffen Gebert over 14 years ago
Would one of you send this patch to the core list?
Instructions (german) on http://typo3blogger.de/ab-in-den-core/
Otherwise I try to have a look the next days.
Updated by Administrator Admin over 14 years ago
Sorry got no time yesterday. I sent it to the core list now.
Updated by Ingo over 14 years ago
can someone shed some light on which case would be the correct one ?
i mean why support both "media" and "embed" if only one of them will be valid.
or is it really both cases that are valid ?
Updated by Steffen Kamper over 14 years ago
only embed is valid, media was used before initial commit.
Is corrected in trunk and 4_3 now.
Updated by Steffen Kamper over 14 years ago
Committed attached v2 to svn
4_3 rev 7389
trunk rev 7390