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);
}