diff --git a/sites/all/modules/age_verify/age_verify.admin.inc b/sites/all/modules/age_verify/age_verify.admin.inc
index 14272a1..811abad 100644
--- a/sites/all/modules/age_verify/age_verify.admin.inc
+++ b/sites/all/modules/age_verify/age_verify.admin.inc
@@ -25,7 +25,7 @@ function age_verify_admin_settings_form($form, &$form_state) {
     '#size' => 40,
     '#maxlength' => 255,
     '#required' => TRUE,
-    '#description' => t('Enter a URL for the user to be directed to if they fail verification.'),
+    '#description' => t('Enter a URL for the user to be directed to if they fail verification.  URL can be a local URL (for example "node/15" or a node\'s URL alias).'),
   );
   $form['age_verify_settings']['age_verify_age'] = array(
     '#type' => 'select',
diff --git a/sites/all/modules/age_verify/age_verify.module b/sites/all/modules/age_verify/age_verify.module
index 6fd39eb..7eb2afe 100644
--- a/sites/all/modules/age_verify/age_verify.module
+++ b/sites/all/modules/age_verify/age_verify.module
@@ -139,7 +139,7 @@ function age_verify_init() {
       drupal_goto('age_verify');
     }
 
-    if (isset($_COOKIE['age_verify']) && $_COOKIE['age_verify'] == 'no' && arg(0, drupal_get_path_alias()) != 'age_verify') {
+    if (isset($_COOKIE['age_verify']) && $_COOKIE['age_verify'] == 'no' && ((arg(0, drupal_get_path_alias()) != 'age_verify') && arg(0, drupal_get_path_alias()) != $fail_redirect)) {
       header('Location: ' . $fail_redirect);
     }
   }
