diff --git a/profile2_regpath.module b/profile2_regpath.module
index d0cc541..7d844a6 100755
--- a/profile2_regpath.module
+++ b/profile2_regpath.module
@@ -48,7 +48,7 @@ function profile2_regpath_form_profile2_type_form_alter(&$form, &$form_state) {
       '#title' => t('URL path'),
       '#field_prefix' => $base_url . '/user/register/',
       '#default_value' => is_object($settings) && $settings->path ? $settings->path : '',
-      '#description' => t('Please enter the portion of the URL that will follow the default registration path. Do not include leading or trailing slashes.'),
+      '#description' => t('Please enter the portion of the URL that will follow the default registration path. Do not include leading or trailing slashes. Fill in \'default\' (without the qoutes) for the user/register path.'),
       '#states' => array(
         'invisible' => array(
           'input[name="status"]' => array('checked' => FALSE),
@@ -269,6 +269,9 @@ function profile2_regpath_user_presave(&$edit, $account, $category) {
 function get_profile_type_by_path() {
   $profile_type = NULL;
   $path = arg(2);
+  if($path == NULL) {
+    $path = 'default';
+  }
   $profile_type = db_query("SELECT pt.type FROM {profile_type} pt LEFT JOIN {profile2_regpath} pr ON pt.id = pr.profile_id WHERE pr.path = :path AND pr.status = 1", array(':path' => $path))->fetchField();
 
   return $profile_type;
