Index: openid_provider.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/openid_provider/openid_provider.module,v retrieving revision 1.3 diff -u -r1.3 openid_provider.module --- openid_provider.module 7 Sep 2008 03:51:58 -0000 1.3 +++ openid_provider.module 26 Sep 2008 13:33:57 -0000 @@ -16,7 +16,17 @@ * Implementation of hook_menu(). */ function openid_provider_menu() { - $items['admin/settings/openid_provider'] = array( + $items['admin/openid'] = array( + 'title' => 'OpenID configuration', + 'description' => "Adjust the behaviour of OpenID.", + 'position' => 'left', + 'page callback' => 'system_admin_menu_block_page', + 'access arguments' => array('administer openid'), + 'file' => 'system.admin.inc', + 'file path' => drupal_get_path('module', 'system'), + ); + + $items['admin/openid/openid_provider'] = array( 'title' => 'OpenID Provider', 'description' => 'Configure settings for the OpenID Provider.', 'page callback' => 'drupal_get_form',