Project

General

Profile

Actions

Feature #14870

closed

automaketemplate doesn't use relPathPrefix for IE-Flash-Implementation and others

Added by Arne Holzenburg over 18 years ago. Updated almost 13 years ago.

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

1294_branch4-3_v2.diff (1.05 KB) 1294_branch4-3_v2.diff Administrator Admin, 2010-06-05 08:58
1294_trunk_v2.diff (1.05 KB) 1294_trunk_v2.diff Administrator Admin, 2010-06-05 08:58
Actions #1

Updated by Jigal van Hemert over 14 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)

Actions #2

Updated by Benni Mack almost 14 years ago

committed v2 to trunk (rev. 7813)
committed v2 to TYPO3_4-3 (rev. 7814)

Actions #3

Updated by Susanne Moog almost 13 years ago

  • Target version deleted (4.4.0)
Actions

Also available in: Atom PDF