Log in

View Full Version : Strange problem with class_bbcode.php [attach]


neverstop
03-19-2008, 10:03 PM
Hi,

I made the following modification to my class_bbcode.php file so that I could use [attach] to have an inline media player for flv files. I added this code to switch($attachment['extension']) (around line 1853):

case 'flv':
$replace[] = "<div style=\"padding: 0px; position:relative;\" id=\"player\\1\">This text will be replaced</div>
<div id=\"div\\1\">
<script type=\"text/javascript\">
var so = new SWFObject('/mediaplayer.swf','player\\1','450','358','7');
so.addVariable('type', 'flv');
so.addParam('allowscriptaccess','true');
so.addParam('wmode','transparent');
so.addVariable('file','{$this->registry->options['bburl']}/attachment.php?{$this->registry->session->vars['sessionurl']}attachmentid=\\1&amp;d=$attachment[dateline]');
so.addVariable('height','354');
so.addVariable('width','445');
so.addVariable('logo','/images/wm.png');
so.addVariable('frontcolor','0xFFFFFF');
so.addVariable('image','/images/misc/am-logo.gif');
so.addVariable('backcolor','0x800000');
so.addVariable('lightcolor','0xCCCCCC'); so.write('player\\1');
</script>
</div>";

It worked as expected, so that any time I used [attach] tags with an flv file attachment, it would show the player and play the file.

I then wanted to try and have two flv attachments in one post. Well it works fine for the first file, but for some reason it is putting the second file into an img tag:

<div style="padding: 0px; position:relative;" id="player45">This text will be replaced</div>

<div id="div45">
<script type="text/javascript">
var so = new SWFObject('/mediaplayer.swf','player45','450','358','7');
so.addVariable('type', 'flv');
so.addParam('allowscriptaccess','true');
so.addParam('wmode','transparent');
so.addVariable('file','http://www.mydomain.com/attachment.php?attachmentid=45&amp;d=1205961181');
so.addVariable('height','354');
so.addVariable('width','445');
so.addVariable('logo','/images/wm.png');
so.addVariable('frontcolor','0xFFFFFF');
so.addVariable('image','/images/misc/am-logo.gif');
so.addVariable('backcolor','0x800000');
so.addVariable('lightcolor','0xCCCCCC'); so.write('player45');
</script>
</div><br />
<br />
<img src="http://www.mydomain.com/attachment.php?attachmentid=46&amp;d=1205961181" border="0" alt="Name: fitblonde.FLV
Views: 7
Size: 7.01 MB" style="margin: 2px" />

I lnow it is not a problem with the player because I can use a two flv custom bbcode players in one post.

I have no idea why the second file would be placed into an img tag.

Can anyone see something obvious or a reason why it would do this?

Cheers,
Ian

neverstop
03-21-2008, 09:29 PM
up...

Anybody see a problem with the code I added or a rason why the second attachment gets put in a img tag?