As uid 1, I was unable to get to the admin/settings/tabs page. I updated the menu entry, uncommenting the 'access callbacks' line, and changing 'callbacks' to 'arguments'. The tabs_menu(); function now looks like this, which appears to be working:

function tabs_menu() {
  $items = array();

  $items['admin/settings/tabs'] = array(
    'path' => 'admin/settings/tabs',
    'title' => 'Tabs',
    'description' => 'Configuration for tabs',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('tabs_admin_settings'),
    'access arguments' => array('administer site configuration'),
  );

  return $items;
}

I'm just not sure if it should be 'administer site configuration', but at least the menu will show-up for uid 1 now.

Comments

nedjo’s picture

Status: Active » Fixed

Thanks, applied.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.