OK. The errors are gone. However, I am now getting a blank sidebar.
Quote:
[vBulletin Icon]
Control Panel Home
Expand All | Collapse All
Save Prefs | Revert Prefs
|
Here is what I have in adminfunctions_navpanel.php now.
PHP Code:
function print_nav_panel()
{
global $_NAV, $_NAVPREFS, $groupid, $vbulletin, $vbphrase;
$controls = "<div align=\"center\"><a href=\"index.php?" . $vbulletin->session->vars['sessionurl'] . "do=home\">$vbphrase[control_panel_home]</a></div>";
if (VB_AREA != 'AdminCP')
{
echo $controls . $_NAV;
return;
}
if (!is_array($groupid))
{
$groupid = array();
}
$groups = implode(',', array_keys($groupid));
$numgroups = array();
$navprefs = array();
foreach ($groupid AS $nav_file => $ids)
{
(this is lines 155 --> 174