? comment_form_submit_redirect_fix-D6.patch
? improve_menu_inc_documentation-D6.patch
Index: modules/comment/comment.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v
retrieving revision 1.700
diff -u -p -r1.700 comment.module
--- modules/comment/comment.module	17 Mar 2009 12:41:54 -0000	1.700
+++ modules/comment/comment.module	21 Mar 2009 15:52:44 -0000
@@ -1757,7 +1757,9 @@ function comment_form_submit($form, &$fo
   _comment_form_submit($form_state['values']);
   if ($cid = comment_save($form_state['values'])) {
     $node = node_load($form_state['values']['nid']);
-    $page = comment_new_page_count($node->comment_count, 1, $node);
+    // Add 1 to existing $node->comment count to include new comment.
+    $comment_count = $node->comment_count + 1;
+    $page = comment_new_page_count($comment_count, 1, $node)
     $form_state['redirect'] = array('node/' . $node->nid, $page, "comment-$cid");
     return;
   }
