$items[] = array(
  'path' => 'admin/settings/mymodule',
  'title' => 'mymodule settings',
  'description' =>'mymodule settings control',
  'page callback' => 'drupal_get_form',
  'page arguments' => array('mymodule_admin'),
  'access callback' => array('access administration pages'),
  );
 
This item shows up on Admin Settings page
 
But when I click it, the page dont change - remains on Settings!  Should show my form...
 
Whats wrong?
 

Feijó