diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-03 11:04:50 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-03 11:04:50 +0000 |
commit | dbcf525d42151c122517f470341e42d3c4956eaf (patch) | |
tree | b1c17ec36d852f67ee07029583ebe035747a4a93 /modules/comment/comment.module | |
parent | 17a9896b082ea00697157542ec8c8083e5a4fb95 (diff) | |
download | brdo-dbcf525d42151c122517f470341e42d3c4956eaf.tar.gz brdo-dbcf525d42151c122517f470341e42d3c4956eaf.tar.bz2 |
- Patch #106351 by hickory: fixed comment forms.
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 867bc61df..28d85b5a3 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -324,7 +324,7 @@ function comment_link($type, $node = NULL, $teaser = FALSE) { 'title' => t('Add new comment'), 'href' => "comment/reply/$node->nid", 'attributes' => array('title' => t('Add a new comment to this page.')), - 'fragment' => 'comment_form' + 'fragment' => 'comment-form' ); } else { @@ -345,7 +345,7 @@ function comment_link($type, $node = NULL, $teaser = FALSE) { 'title' => t('Add new comment'), 'href' => "comment/reply/$node->nid", 'attributes' => array('title' => t('Share your thoughts and opinions related to this posting.')), - 'fragment' => 'comment_form' + 'fragment' => 'comment-form' ); } } |