Feature #14870
closed
automaketemplate doesn't use relPathPrefix for IE-Flash-Implementation and others
Added by Arne Holzenburg over 19 years ago.
Updated over 13 years ago.
Category:
Backend User Interface
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
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)
committed v2 to trunk (rev. 7813)
committed v2 to TYPO3_4-3 (rev. 7814)
- Target version deleted (
4.4.0)
Also available in: Atom
PDF