Quote:
Originally Posted by Makaveli007
^this fixed worked for me as well, however once applying the fix, everyone started getting the redirect message when posting, even though redirects were turned off, and there were major major double posting issues. i had revert the functions_video file, which broke the AME mod again, forcing me to uninstall the mod for the time being
|
Same issue for me. This is unfortunate as my members like the embedded functionality. Will keep an on on this thread for a fix. Below is the contents of my funtions_video.php with the mod configured.
PHP Code:
function parse_video_bbcode($pagetext)
{
global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);
($hook = vBulletinHook::fetch_hook('data_parse_bbcode_video')) ? eval($hook) : false;
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;
}