Closed (fixed)
Project:
Tabs (jQuery UI tabs)
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Apr 2008 at 19:48 UTC
Updated:
1 May 2008 at 20:04 UTC
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
Comment #1
nedjoThanks, applied.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.