Topic: How to make a BBcode Special
Hello people:
Now i have upgraded to PunBB 1.3 and all things works correctly. Now, i'm trying to make a BBCODE to insert youtube videos.
I put this code into /include/parser.php
$pattern[] = '#\[youtube\](.*?)\[/youtube\]#s';
$replace[] = '<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/$1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/$1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>';
But it doens't works .... I was using this method into 1.2.x and worked correctly, but in 1.3 not.
Thanks