Project

General

Profile

Actions

Bug #22370

closed

Content Element Media and Render Type "HTML Embed Element" not working

Added by Ingo over 14 years ago. Updated almost 6 years ago.

Status:
Closed
Priority:
Should have
Category:
-
Target version:
-
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

issue_13991.diff (596 Bytes) issue_13991.diff Administrator Admin, 2010-04-12 11:32
13991_v2.diff (649 Bytes) 13991_v2.diff Administrator Admin, 2010-04-19 17:20
Actions

Also available in: Atom PDF