### Eclipse Workspace Patch 1.0 #P drupal Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.776.2.1 diff -u -r1.776.2.1 node.module --- modules/node/node.module 29 Jan 2007 21:51:53 -0000 1.776.2.1 +++ modules/node/node.module 14 Jun 2007 15:30:04 -0000 @@ -758,7 +758,7 @@ /** * Generate a page displaying a single node, along with its comments. */ -function node_show($node, $cid) { +function theme_node_show($node, $cid) { $output = node_view($node, FALSE, TRUE); if (function_exists('comment_render') && $node->comment) { @@ -2348,7 +2348,7 @@ if ($node->nid) { if ((user_access('view revisions') || user_access('administer nodes')) && node_access('view', $node)) { drupal_set_title(t('Revision of %title from %date', array('%title' => $node->title, '%date' => format_date($node->revision_timestamp)))); - return node_show($node, arg(2)); + return theme('node_show', $node, arg(2)); } drupal_access_denied(); return; @@ -2412,7 +2412,7 @@ */ function node_page_view($node, $cid = NULL) { drupal_set_title(check_plain($node->title)); - return node_show($node, $cid); + return theme('node_show', $node, $cid); } /**