Did a few changes to your code that removes the
http://www.youtube.com/ bit;
Here is an example of this working:
http://www.y-helo-thar.com/showpost....98&postcount=7
Quote:
Originally Posted by my changes
Open /includes/class_bbcode.php
Find:
Code:
// ********************* PARSE BBCODE TAGS ***************************
Add Above:
Code:
//jill add youtube code remove full URL
if ( strpos($text, 'http://www.youtube.com/watch') !== false )
{
//$data = preg_replace("http*youtube*com","", $data);
$text = preg_replace("/http:\/\/www\.youtube\.com\/watch\\?v=([0-9a-zA-Z[:punct:]]{11}+)/","[/url]<object width=\"426\" 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>[url]", $text);
}
//jill code end
|