Including Automatic Media Embedding in vbAdvanced
by
29 May 2008
The Automatic Media Embedding mod by The Geek does not parse media links inside http://www.vbadvanced.com/products.php?do=productinfo&productid=4 modules. I have tried a simple hack for that seems to work, and I am sharing this hack here. Open file admincp/vba_cmps_admin.php Find: PHP Code:
case 'bb_code':
PHP Code:
include_once('./includes/ame_bbcode.php');
PHP Code:
$modulehtml = $bbcode_parser->do_parse(
Add below: PHP Code:
$modulehtml = ame_process_bbcode($parser, $vbulletin->GPC['message'] , '');
Find: PHP Code:
// Kill the wordwrap setting to avoid problems with HTML links/images
Add below: PHP Code:
include_once('./includes/ame_bbcode.php');
Find: PHP Code:
$module['code_parsed'] = $bbcode_parser->do_parse(
Add below: PHP Code:
$module['code_parsed'] = ame_process_bbcode($parser, $module['code_parsed'] , '');
|
Similar Mods
Add-On Releases DJ's AMEs :: Media Definitions for AME 2.5 :: More Video, Twitter, Pinterest... | vBulletin 3.8 Add-ons |
Add-On Releases Digital Sith's AMEs - ADULT Media Definitions | vBulletin 3.6 Add-ons |
Add-On Releases DJ's AME (Auto Media Embedding) XML Media Definitions (Third Time's the Charm) | Modification Graveyard |
Add-On Releases AME (Auto Media Embedding) XML Releases | Modification Graveyard |
Add-On Releases AME (Auto Media Embedding) XML's (The Geek) | Modification Graveyard |