Index: node_reference.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/references/node_reference/node_reference.module,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 node_reference.module
--- node_reference.module	7 Dec 2010 15:40:59 -0000	1.1.2.1
+++ node_reference.module	15 Dec 2010 10:45:04 -0000
@@ -711,18 +711,19 @@ function node_reference_node_type_update
  * Theme preprocess function.
  *
  * Allows specific node templates for nodes displayed as values of a
- * node_reference field with the 'full node' / 'teaser' formatters.
+ * node_reference field with a specific view mode.
  */
 function node_reference_preprocess_node(&$vars) {
-  // The 'referencing_field' attribute of the node is added by the 'teaser'
-  // and 'full node' formatters.
+  // The 'referencing_field' attribute of the node is added by the
+  // node_reference_node mode formatter (display referenced node
+  // in a specific view mode).
   if (!empty($vars['node']->referencing_field)) {
     $node = $vars['node'];
     $field = $node->referencing_field;
-    $vars['theme_hook_suggestions'][] = 'node-reference';
-    $vars['theme_hook_suggestions'][] = 'node-reference__' . $field['field_name'];
-    $vars['theme_hook_suggestions'][] = 'node-reference__' . $node->type;
-    $vars['theme_hook_suggestions'][] = 'node-reference__' . $field['field_name'] . '__' . $node->type;
+    $vars['theme_hook_suggestions'][] = 'node__reference';
+    $vars['theme_hook_suggestions'][] = 'node__reference__' . $field['field_name'];
+    $vars['theme_hook_suggestions'][] = 'node__reference__' . $node->type;
+    $vars['theme_hook_suggestions'][] = 'node__reference__' . $field['field_name'] . '__' . $node->type;
   }
 }
 
