--- uc_node_checkout.admin.inc	2009-01-31 05:54:50.000000000 +1100
+++ uc_node_checkout.admin.inc	2009-04-06 15:32:28.000000000 +1000
@@ -8,10 +8,18 @@
 
 // Displays the node checkout settings table/form.
 function uc_node_checkout_admin() {
+  // just adding in our little message about the new permissions
+  if (user_access('administer permissions')) {
+    $link = l('extra permissions', 'admin/user/permissions', array('fragment' => 'module-uc_node_checkout'));
+  }
+  else {
+    $link = 'extra permissions';
+  }
+  $output[] = 'Node checkout also provides '. $link .' to bypass the checkout process for certain node types.';
+  
   $nc_map = uc_node_checkout_product_map();
   $types = node_get_types('types');
   $rows = array();
-
   $header = array(t('Node type'), t('Product'), t('View'), t('Actions'));
 
   // Loop through all the node types on the site.
@@ -36,7 +44,8 @@ function uc_node_checkout_admin() {
     );
   }
 
-  return theme('table', $header, $rows);
+  $output[] = theme('table', $header, $rows);
+  return implode("\n", $output);
 }
 
 // Displays the form to map a product to a node type.
