I saw the same post for the fix and I tried it with no luck. This is how my includes/functions_video.php reads:
PHP Code:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 4.0.3
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2010 vBulletin Solutions Inc. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/
function parse_video_bbcode($pagetext)
{
global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);
if (stripos($pagetext, '[video]') !== false)
{
require_once(DIR . '/includes/class_bbcode_alt.php');
$parser = new vB_BbCodeParser_Video_PreParse($vbulletin, array());
$pagetext = $parser->parse($pagetext);
}
return $pagetext;
}
/*======================================================================*\
|| ####################################################################
|| # Downloaded: 22:02, Fri Apr 9th 2010
|| # CVS: $RCSfile$ - $Revision: 27207 $
|| ####################################################################
\*======================================================================*/
?>