
11-06-2010, 10:03 PM
|
|
|
Join Date: Feb 2008
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by jazde86
User CP bug:
VBDev forgot to update the path within the vB 3 plugin, in the vB 4 it's correct.
To resolve the issue, go in your Admin CP to Manage Plugins and search for the User option add in profile vB3 plugin. Open it and change the path two times:
From:
PHP Code:
/includes/mgc_cb_evo/
To:
PHP Code:
/mgc_cb_evo/classes/
1:
PHP Code:
// Instantiate display class
require_once(DIR . '/mgc_cb_evo/classes/class_display.php');
$MGCCbEvoDisplay = new MGCCbEvo_display($vbulletin,$MGCCbEvoCore);
2:
PHP Code:
// Channel selector
if ($MGCCbEvoCore->evo_permissions->can_select_default_channel())
{
require_once(DIR . '/mgc_cb_evo/classes/class_misc.php');
$MGCCbEvoMisc = new MGCCbEvo_misc($vbulletin,$MGCCbEvoCore);
$show['chan_sel'] = 1;
$channel_select = $MGCCbEvoMisc->construct_default_channel_selector();
}
It's so easy! 
|
GREAT!
That's solve my problem!
many thanks, man!
|