From bc5ec8ea09ad5c0c2c7a738cb286d5baaa6ae2fc Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 10 Oct 2004 10:56:59 +0000 Subject: - Fixed critical bug #10664: made comment in collapsed mode work. One more down. --- modules/comment/comment.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/comment/comment.module') 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 = "
\n"; - $output .= ' '. l($comment->subject, comment_node_url() .'/'. $comment->cid, NULL, NULL, "comment-$comment->cid") . ($comment->new ? ' '. theme('mark') : '') .' '; + $output .= ' '. l($comment->subject, comment_node_url() .'/view/'. $comment->cid, NULL, NULL, "comment-$comment->cid") . ($comment->new ? ' '. theme('mark') : '') .' '; $output .= ''. t('by') .' '. format_name($comment) ."\n"; $output .= "
\n"; return $output; -- cgit v1.2.3