Why this menu disables my left sidebar?

  1. function partners_menu($may_cache) {
  2.         //$items = array();
  3.         $access_config = user_access('administer site configuration');
  4.         $access_content = user_access('access content');
  5.         if ($may_cache) {
  6.                 $items[] = array(
  7.                         'path' => 'admin/settings/partners',
  8.                         'title' => t('Partners'),
  9.                         'description' => t('Adjust the FCBH Partners settings.'),
  10.                         'callback' => 'partners_admin',
  11.                         'access' => $access_config,
  12.                 );
  13.                 $items[] = array(
  14.                         'path' => 'admin/settings/partners/settings',
  15.                         'title' => t('Global Settings'),
  16.                         'type' => MENU_DEFAULT_LOCAL_TASK,
  17.                 );
  18.                 $items[] = array(
  19.                         'path' => 'admin/settings/partners/partners',
  20.                         'title' => t('Partners'),
  21.                         'type' => MENU_LOCAL_TASK,
  22.                 );
  23.                 $items[] = array(
  24.                         'path' => 'admin/settings/partners/messages',
  25.                         'title' => t('Messaging'),
  26.                         'type' => MENU_LOCAL_TASK,
  27.                         'weight' => 1,
  28.                 );
  29.                 $items[] = array(
  30.                         'path' => 'members/register',
  31.                         'title' => t('Member Registration'),
  32.                         'description' => t('This is the default registration page'),
  33.                         'callback' => 'partners_public',
  34.                         'access' => user_access('access content'),
  35.                         'type' => MENU_CALLBACK
  36.                 );
  37.         }
  38.         return $items;
  39. }