--- uc_payflowpro.module.original	Mon Aug 17 09:53:03 2009
+++ uc_payflowpro.module	Mon Aug 17 09:55:24 2009
@@ -99,14 +99,17 @@
     'type' => MENU_CALLBACK,
   );
 
-  // If you can view your own orders, allow you to see the recurring
-  // profiles tab on the user account page.
-  $items['user/%/pfp_cpanel'] = array(
-    'title' => 'Recurring Payments',
-    'page callback' => 'uc_payflowpro_user_panel',
-    'type' => MENU_LOCAL_TASK,
-    'access arguments' => array('view own orders'),
-  );
+  // If recurring transactions are enabled and you can view your own 
+  // orders, allow you to see the recurring profiles tab on the user 
+  // account page.
+  if( variable_get('uc_payflowpro_enable_recurring', 0) ) {
+    $items['user/%/pfp_cpanel'] = array(
+      'title' => 'Recurring Payments',
+      'page callback' => 'uc_payflowpro_user_panel',
+      'type' => MENU_LOCAL_TASK,
+      'access arguments' => array('view own orders'),
+    );
+  }
 
   return $items;
 }
