=== modified file 'uc_store/uc_store.admin.inc'
--- uc_store/uc_store.admin.inc	2009-09-22 21:37:57 +0000
+++ uc_store/uc_store.admin.inc	2010-01-19 16:05:43 +0000
@@ -986,8 +986,10 @@
     'revision' => 'formatted-original',
     'type' => 'amount',
   );
-  $output = '<p>'. l(t('Create an order for this customer.'),
-                     'admin/store/orders/create/'. $uid) .'</p>';
+  if (user_access('create orders')) {
+    $output = '<p>'. l(t('Create an order for this customer.'),
+                       'admin/store/orders/create/'. $uid) .'</p>';
+  }
   $output .= '<p>'. t('!totals_orders orders shown match that account with !totals_items items purchased and !totals_total spent:',
                      array('!totals_orders' => $totals['orders'],
                            '!totals_items' => $totals['items'],

