Quote:
Originally Posted by v2b4vn
I have problem with vb 4.0.4 PL1 :
After install this mod , appear warnning :
please help me !
|
edit modsystem_functions.php 338~339
PHP Code:
$modtitle_coder = unserialize ($vbulletin->modtitle_coder);
$modtitle_designer = unserialize ($vbulletin->modtitle_designer);
edit is:
PHP Code:
$modtitle_coder = $vbulletin->modtitle_coder;
$modtitle_designer = $vbulletin->modtitle_designer;
edit modsystem_functions.php 415~417
PHP Code:
$modstats_coder = unserialize ($vbulletin->modstats_coder);
$modstats_designer = unserialize ($vbulletin->modstats_designer);
$modstats_motm = unserialize ($vbulletin->modstats_motm);
edit is:
PHP Code:
$modstats_coder = $vbulletin->modstats_coder;
$modstats_designer = $vbulletin->modstats_designer;
$modstats_motm = $vbulletin->modstats_motm;
Plugins & Products->Plugin Manager------>MOD System - set Specialtemplates (EDIT)
PHP Code:
$datastore_fetch[] = "'modstats_coder','modstats_designer','modstats_motm','modtitle_coder','modtitle_designer'";
edit is:
PHP Code:
$datastore_fetch[] = "'modstats_coder'";
$datastore_fetch[] = "'modstats_motm'";
$datastore_fetch[] = "'modtitle_coder'";
$datastore_fetch[] = "'modtitle_designer'";