Index: modules/comment/comment.module =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v retrieving revision 1.505 diff -u -p -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:25:07 -0000 @@ -140,7 +140,8 @@ function comment_menu($may_cache) { } 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', + 'callback' => 'node_page_view', + 'callback arguments' => array(node_load(arg(1)), arg(2)), 'type' => MENU_CALLBACK); } }