diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-10-10 10:56:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-10-10 10:56:59 +0000 |
commit | bc5ec8ea09ad5c0c2c7a738cb286d5baaa6ae2fc (patch) | |
tree | 9dfa3e20d7789745b081da0a8b67210d5d045042 /modules/comment.module | |
parent | 63c2d329007c5232fc73a46b64920900dc6be6d9 (diff) | |
download | brdo-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.module')
-rw-r--r-- | modules/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment.module b/modules/comment.module index 0d39c7abb..25b00c451 100644 --- a/modules/comment.module +++ b/modules/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; |