That's Right,
Jaxel, I didn't Updated them before, that was my Error.
Now that I Updated the Video-Hoster Files is Working Better (I didn't Noticed that those are the ones on the includes/xml Folder that you Provided with the Product

).
But there's a Small Error on the YouTube and YouTubeHD Video Hoster Files

(Perhaps in one of your Edits of the File

):
On
videohoster-YouTube
Code:
function fetch_videobbcode($vid, $videoid = '', $videotitle = '')
{
$videoid = $videoid ? $videoid : $this->video_id;
$videotitle = $videotitle ? $videotitle : $this->video_title;
if ($this->registry->options['videodirectory_bbcode'])
{
return '[video=' . $videotitle . ']' . $vid . '[/video]';
}
else
{
return '[' . $this->hostername . '=' . $videotitle . ']' . $videoid . '[/' . $this->hostername . ']';
}
}
They're Inverted; it should be:
Code:
function fetch_videobbcode($vid, $videoid = '', $videotitle = '')
{
$videoid = $videoid ? $videoid : $this->video_id;
$videotitle = $videotitle ? $videotitle : $this->video_title;
if ($this->registry->options['videodirectory_bbcode'])
{
return '[' . $this->hostername . '=' . $videotitle . ']' . $videoid . '[/' . $this->hostername . ']';
}
else
{
return '[video=' . $videotitle . ']' . $vid . '[/video]';
}
}
and on
videohoster-YouTubeHD it should be:
Code:
function fetch_videobbcode($vid, $videoid = '', $videotitle = '')
{
$videoid = $videoid ? $videoid : $this->video_id;
$videotitle = $videotitle ? $videotitle : $this->video_title;
if ($this->registry->options['videodirectory_bbcode'])
{
return '[' . $this->hostername . '=' . $videotitle . ']' . $videoid . '[/' . $this->hostername . ']';
}
else
{
return '[video=' . $videotitle . ']' . $vid . '[/video]';
}
}
Otherwise it'll return the Video Tag instead of the YouTube and YouTubeHD Tag if you've selected to Display Tags on the Video Option.
That Error is in the Other Video Hosters, you should do the inversion of the Codes there too.
My Best Regards.