Ok, I removed that slash to no avail.
However, I found and fixed the problem.
For Joomla 1.5, edit the file module/mod_j15randomflashpro/mod_j15randomflashpro.php
Around line 31 add this line before the object tag
| Code: |
<embed type="application/x-shockwave-flash" width="$width" height="$height" src="$flashbase/$top.swf"></embed>
|
The final product should look like this:
| Code: |
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
width="$width" height="$height" id="g1">
<param name="movie" value="$flashbase/$top.swf" />
<param name="loop" value="true" />
<param name="quality" value="$quality" />
<param name="bgcolor" value="$background" />
<embed type="application/x-shockwave-flash" width="$width" height="$height" src="$flashbase/$top.swf"></embed>
</object>
|
This as been tested successfully on FF3, IE8, and Chrome.