well mine isnt blank but it doesnt work , on 4.1 patch 2 it worked when it wanted then worked steady now updating to 4.1.1 it doesnt work at all .. the is what my functions video php shows
Code:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 4.1.1 - Licence Number VBSF6E2F63
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2011 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;
($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;
}
/*======================================================================*\
|| ####################################################################
|| # Downloaded: 16:45, Tue Jan 25th 2011
|| # CVS: $RCSfile$ - $Revision: 27207 $
|| ####################################################################
\*======================================================================*/
?>
Quote:
Originally Posted by imported_df+++++
i just realized my functions_video.php is blank. fresh download/instal of vB4.1.1
i think i found our issue. anyone else out there?
|