
11-22-2008, 02:54 AM
|
|
|
Join Date: Aug 2006
Posts: 247
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by KW802
Actually....
For those who want to turn of the related YouTube videos, modify your /forums/includes/xml/videohoster-YouTube.xml and scroll down to near the bottom (with the current version it is the second to last function in the file) and find this bit of code:
Code:
function fetch_embedcode($videoid = '')
{
$videoid = $videoid ? $videoid : $this->video_id;
return '<object width="425" height="373"><param name="movie" value="http://www.youtube.com/v/' . $videoid . '&rel=1&color1=0x2b405b&color2=0x6b8ab6&border=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' . $videoid . '&rel=1&color1=0x2b405b&color2=0x6b8ab6&border=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="373"></embed></object>';
}
In that code several options are passed into the YouTube player via the query string. In this case, it is the "rel" option that needs to be changed. On the line that starts with "return" find the *two* instances of "&rel=1" and change the "1" (true) to be a "0" (false) instead ("&rel=0").
Save the file and refresh your page; the related videos should now be turned off. 
|
It does not work for me.
|