Quote:
Originally Posted by HM666
The other warnings from the post above were due to another mod I found out. Here is the PHP code for lines 44-57 on adminfunctions.php...
PHP Code:
switch(VB_AREA)
{
case 'AdminCP':
$pagetitle = $vbphrase['admin_control_panel'];
$getcssoptions = fetch_cpcss_options();
$cssoptions = array();
foreach ($getcssoptions AS $folder => $foldername)
{
$key = iif($folder == $vbulletin->options['cpstylefolder'], '', $folder);
$cssoptions["$key"] = $foldername;
}
$showoptions = true;
$logintype = 'cplogin';
break;
Possibly the mod is not compatible with our PHP version? We are running PHP 5.6.17.
|
I doubt the PHP version has anything to do with it. I'd suggest either posting in the other add-on's thread, or changing the execution order of the admin plugins. Sometimes changing execution order is all that's needed when there's a clash between add-ons.