From c54a0f575f4a00a8cb51a319648065627d237439 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Mon, 6 Mar 2006 18:09:17 +0000
Subject: [PATCH] - Patch #51543 by wtanaka: clicking on 'add new comment'
 takes you to the wrong place.

---
 modules/comment.module         | 2 +-
 modules/comment/comment.module | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/comment.module b/modules/comment.module
index 2ba64a06b8b1..abcc7925ff10 100644
--- a/modules/comment.module
+++ b/modules/comment.module
@@ -203,7 +203,7 @@ function comment_link($type, $node = 0, $main = 0) {
         else {
           if ($node->comment == COMMENT_NODE_READ_WRITE) {
             if (user_access('post comments')) {
-              $links[] = l(t('add new comment'), "comment/reply/$node->nid", array('title' => t('Add a new comment to this page.')));
+              $links[] = l(t('add new comment'), "comment/reply/$node->nid", array('title' => t('Add a new comment to this page.')), NULL, 'comment-form');
             }
             else {
               $links[] = theme('comment_post_forbidden', $node->nid);
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 2ba64a06b8b1..abcc7925ff10 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -203,7 +203,7 @@ function comment_link($type, $node = 0, $main = 0) {
         else {
           if ($node->comment == COMMENT_NODE_READ_WRITE) {
             if (user_access('post comments')) {
-              $links[] = l(t('add new comment'), "comment/reply/$node->nid", array('title' => t('Add a new comment to this page.')));
+              $links[] = l(t('add new comment'), "comment/reply/$node->nid", array('title' => t('Add a new comment to this page.')), NULL, 'comment-form');
             }
             else {
               $links[] = theme('comment_post_forbidden', $node->nid);
-- 
GitLab