diff --git a/tac_lite.module b/tac_lite.module
index df4d3da..d908dc7 100644
--- a/tac_lite.module
+++ b/tac_lite.module
@@ -46,17 +46,16 @@ function tac_lite_menu() {
   global $user;
   $items = array();
 
-  $items['admin/people/access/tac_lite'] = array(
+  $items['admin/config/people/tac_lite'] = array(
     'title' => 'Access by Taxonomy',
     'description' => "taxonomy-based permissions by tac_lite",
     'page callback' => 'drupal_get_form',
     'page arguments' => array('tac_lite_admin_settings'),
-    'type' => MENU_LOCAL_TASK,
     'weight' => 1, // after 'roles' tab
     'access arguments' => array('administer tac_lite'),
   );
 
-  $items['admin/people/access/tac_lite/settings'] = array(
+  $items['admin/config/people/tac_lite/settings'] = array(
     'title' => 'Settings',
     'type' => MENU_DEFAULT_LOCAL_TASK,
     'weight' => -1,
@@ -71,7 +70,7 @@ function tac_lite_menu() {
     } else {
       $title = "Scheme $i";
     }
-    $items['admin/people/access/tac_lite/scheme_' . $i] = array(
+    $items['admin/config/people/tac_lite/scheme_' . $i] = array(
       'title' => $title,
       'page callback' => 'tac_lite_admin_settings_scheme',
       'page arguments' => array((string)$i),
@@ -359,7 +358,7 @@ function tac_lite_form_alter(&$form, &$form_state, $form_id){
         $form['tac_lite'][0] = array(
           '#type' => 'markup',
           '#markup' => '<p>' . t('You may grant this user access based on the schemes and terms below.  These permissions are in addition to <a href="!url">role based grants on scheme settings pages</a>.',
-                    array('!url' => url('admin/people/access/tac_lite/scheme_1'))) . "</p>\n",
+                    array('!url' => url('admin/config/people/tac_lite/scheme_1'))) . "</p>\n",
           '#weight' => -1,
         );
       }
