summaryrefslogtreecommitdiff
path: root/modules/comment/comment.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-10-10 10:56:59 +0000
committerDries Buytaert <dries@buytaert.net>2004-10-10 10:56:59 +0000
commitbc5ec8ea09ad5c0c2c7a738cb286d5baaa6ae2fc (patch)
tree9dfa3e20d7789745b081da0a8b67210d5d045042 /modules/comment/comment.module
parent63c2d329007c5232fc73a46b64920900dc6be6d9 (diff)
downloadbrdo-bc5ec8ea09ad5c0c2c7a738cb286d5baaa6ae2fc.tar.gz
brdo-bc5ec8ea09ad5c0c2c7a738cb286d5baaa6ae2fc.tar.bz2
- Fixed critical bug #10664: made comment in collapsed mode work. One more down.
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r--modules/comment/comment.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 0d39c7abb..25b00c451 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -1594,7 +1594,7 @@ function theme_comment($comment, $links = 0) {
function theme_comment_folded($comment) {
$output = "<div class=\"comment-folded\">\n";
- $output .= ' <span class="subject">'. l($comment->subject, comment_node_url() .'/'. $comment->cid, NULL, NULL, "comment-$comment->cid") . ($comment->new ? ' '. theme('mark') : '') .'</span> ';
+ $output .= ' <span class="subject">'. l($comment->subject, comment_node_url() .'/view/'. $comment->cid, NULL, NULL, "comment-$comment->cid") . ($comment->new ? ' '. theme('mark') : '') .'</span> ';
$output .= '<span class="credit">'. t('by') .' '. format_name($comment) ."</span>\n";
$output .= "</div>\n";
return $output;