Index: modr8_admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/modr8/modr8_admin.inc,v
retrieving revision 1.17
diff -u -p -r1.17 modr8_admin.inc
--- modr8_admin.inc	6 Mar 2008 16:24:55 -0000	1.17
+++ modr8_admin.inc	3 Apr 2008 22:11:35 -0000
@@ -152,7 +152,7 @@ function modr8_form($form_state, $result
   );
 
   while ($r = db_fetch_object($result)) {
-
+    $op_options = array();
     $node = node_load($r->nid);
     // This flag can be used by modr8, or other modules to change the teaser specifically
     // for when it's being shown in the moderation list.
@@ -162,13 +162,16 @@ function modr8_form($form_state, $result
     $form[$node->nid] = array(
       '#tree' => TRUE,
     );
+
+    $op_options['approve'] = t('Approve');
+    if (node_access("delete", $node)) {
+      $op_options['delete'] = t('Delete');
+    }
+    $op_options['nada'] = t('No action');
+    
     $form[$node->nid]['ops'] = array(
       '#type' => 'radios',
-      '#options' => array(
-        'approve' => t('Approve'),
-        'delete' => t('Delete'),
-        'nada' => t('No action'),
-      ),
+      '#options' => $op_options,
       '#default_value' => variable_get('modr8_default_option', 'nada'),
     );
     if (variable_get('modr8_send_approve', FALSE) || variable_get('modr8_send_deny', FALSE)) {
