[TYPO3-dev] #0001294 prefixResourcePath doesn't work on <param>

Jigal van Hemert jigal at xs4all.nl
Tue Aug 11 15:47:28 CEST 2009


Dear list,

While going through bugs for automaketemplate I stumbled upon "#0001294: 
automaketemplate doesn't use relPathPrefix for IE-Flash-Implementation 
and others"

It seems to be an issue in t3lib_parsehtml::prefixResourcePath() which 
doesn't add a prefix to <param name="movie" value="{path/flash.swf}"...>

At first glance it seem that adding:
     // 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;

to the switch would fix it for the movie parameter; perhaps there are 
more param-fields which need to be handled here.

Who is willing to help to resolve this issue?

Regards,
-- 
Jigal van Hemert.




More information about the TYPO3-dev mailing list