diff --git autoassignrole.module autoassignrole.module
index 27242f3..1977325 100644
--- autoassignrole.module
+++ autoassignrole.module
@@ -445,7 +445,7 @@ function autoassignrole_form_alter(&$form, $form_state, $form_id) {
     $form['registration']['autoassignrole_use'] = array(
       '#type' => 'checkboxes',
       '#title' => t('Use on Auto Assign Role paths'),
-      '#default_value' => content_profile_get_settings($type),
+      '#default_value' => content_profile_get_settings($type, 'autoassignrole_use'),
       '#options' => $options,
       '#description' => t('The Auto Assign Role module gives you the ability to assign paths a user can register from for a role.  After associating a <a href="@aar">path with a role</a> your selection can  associate this content type with a path.', array('@aar' => url('admin/user/autoassignrole'))),
       '#disabled' => count($options) == 0,
@@ -458,7 +458,7 @@ function autoassignrole_form_alter(&$form, $form_state, $form_id) {
       // Set the content types which should be shown by the content_profile_registration module
       $form['#content_profile_registration_use_types'] = array();
       foreach (content_profile_get_types('names') as $type => $name) {
-        if (in_array($rid, content_profile_get_settings($type))) {
+        if (in_array($rid, content_profile_get_settings($type, 'autoassignrole_use'))) {
           $form['#content_profile_registration_use_types'][$type] = $name;
         }
       }
