
06-29-2008, 09:38 PM
|
|
|
Join Date: Nov 2003
Posts: 921
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Anyone downloading the chat prior to this post Sunday 7:35pm EST.....Re-Download it or fix this file... There was an issue with the BBCode not working. It's now resolved.
Quote:
Originally Posted by VBDev
Ok found the problem of the email bbcode.
Open functions_mgc_cb_evo.php.
Search for :
PHP Code:
if ($vbulletin->options['mgc_cb_evo_bbcode_email']) { $bbcode_list['no_option']['url'] = array('callback' => 'handle_bbcode_email', 'strip_empty' => true);
$bbcode_list['option']['url'] = array('callback' => 'handle_bbcode_email', 'strip_empty' => true); }
Replace by :
PHP Code:
if ($vbulletin->options['mgc_cb_evo_bbcode_email']) { $bbcode_list['no_option']['email'] = array('callback' => 'handle_bbcode_email', 'strip_empty' => true);
$bbcode_list['option']['email'] = array('callback' => 'handle_bbcode_email', 'strip_empty' => true); }
|
|