1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

flash bb code wasn't parsing {e_PLUGIN} etc correctly.

This commit is contained in:
CaMer0n
2006-12-17 17:27:35 +00:00
parent 7500419caf
commit 6f02e68d3f

View File

@@ -1,6 +1,6 @@
// USAGE: [flash=width,height]http://www.example.com/file.swf[/flash] // USAGE: [flash=width,height]http://www.example.com/file.swf[/flash]
$movie_path = "http://".eregi_replace("http://", "",$code_text); $movie_path = (substr($code_text,0,4) == "http") ? "http://".eregi_replace("http://", "",$code_text) : $code_text;
$movie_path = $tp -> toAttribute($movie_path); $movie_path = $tp -> toAttribute($movie_path);
$parm_array = explode(",",$parm); $parm_array = explode(",",$parm);
@@ -18,4 +18,5 @@ return "<object type='application/x-shockwave-flash' data='$movie_path' width='$
<param name='movie' value='$movie_path' /> <param name='movie' value='$movie_path' />
<param name='quality' value='high' /> <param name='quality' value='high' />
<param name='allowscriptaccess' value='samedomain' /> <param name='allowscriptaccess' value='samedomain' />
</object>"; </object>";