Index: modules/comment/comment.module =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v retrieving revision 1.505 diff -u -r1.505 comment.module --- modules/comment/comment.module 1 Dec 2006 16:50:36 -0000 1.505 +++ modules/comment/comment.module 5 Dec 2006 17:48:42 -0000 @@ -139,9 +139,13 @@ } } if ((arg(0) == 'node') && is_numeric(arg(1)) && is_numeric(arg(2))) { - $items[] = array('path' => ('node/'. arg(1) .'/'. arg(2)), 'title' => t('View'), - 'callback' => 'node_page', - 'type' => MENU_CALLBACK); + $items[] = array( + 'path' => ('node/'. arg(1) .'/'. arg(2)), + 'title' => t('View'), + 'callback' => 'node_page_view', + 'callback arguments' => array(node_load(arg(1)), arg(2)), + 'type' => MENU_CALLBACK, + ); } }