Index: sites/all/modules/nodequeue/includes/nodequeue.admin.inc
===================================================================
--- sites/all/modules/nodequeue/includes/nodequeue.admin.inc	(revision 2567)
+++ sites/all/modules/nodequeue/includes/nodequeue.admin.inc	(working copy)
@@ -40,6 +40,14 @@
       If you wish to have fewer views, you can disable this option and use a single view with an argument for the qid."),
     '#default_value' => variable_get('nodequeue_view_per_queue', 1),
   );
+  
+  $form['nodequeue_hide_restricted_titles'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Hide title, author and date for nodes in the queue to which the user lacks access'),
+    '#description' => t("If a user doesn't have access to a node, hide the title, author and date and show only the node id, in this format: Restricted node, NID: @nid"),
+    '#default_value' => variable_get('nodequeue_hide_restricted_titles', 0),
+  );
+  
   return system_settings_form($form);
 }
 
@@ -762,7 +770,8 @@
   $count = count($nodes);
   foreach ($nodes as $node) {
     $form[$node->nid]['#node'] = (array) $node;
-    if ($node->visible) {
+    $hide_titles = variable_get('nodequeue_hide_restricted_titles', 0);
+    if ( $hide_titles && $node->visible || !$hide_titles ) {
       $form[$node->nid]['#node'] = (array) $node;
       $form[$node->nid]['title'] = array('#value' => l($node->title, 'node/'. $node->nid));
       $form[$node->nid]['author'] = array('#value' => theme('username', $node));
