Actions
Feature #14870
closedautomaketemplate doesn't use relPathPrefix for IE-Flash-Implementation and others
Start date:
2005-07-19
Due date:
% Done:
0%
Estimated time:
PHP Version:
4.3
Tags:
Complexity:
Sprint Focus:
Description
The relPathPrefix-Setting will not be applied on some static Elements.
<object>
<param name="movie" value="[---no relPathPrefix---]flash.swf">
<embed src="[relPathPrefix]flash.swf"></embed>
</object>
(issue imported from #M1294)
Files
Updated by Jigal van Hemert over 15 years ago
This is a core issue:
In t3lib/class.t3lib_parsehtml.php in t3lib_parsehtml::prefixResourcePath() the following should be added to the switch():
// value attribute
case 'param':
$test = $params[0]['name'];
if ($test && $test == 'movie') {
$src = $params[0]['value'];
if ($src) {
$params[0]['value'] = $this->prefixRelPath($prefix,$params[0]['value'],$suffix);
$somethingDone=1;
}
}
break;
(Not tested by lack of test site with automaketemplate at the moment)
Updated by Benni Mack over 14 years ago
committed v2 to trunk (rev. 7813)
committed v2 to TYPO3_4-3 (rev. 7814)
Actions