summaryrefslogtreecommitdiff
path: root/modules/comment/comment.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-06-19 13:03:53 +0000
committerDries Buytaert <dries@buytaert.net>2009-06-19 13:03:53 +0000
commitcaa684125b15d900670a5edd1ba7c405212a4f6d (patch)
treea9fdafc38d14c8eef2dfa952080b85a072d0f64d /modules/comment/comment.admin.inc
parent964dc32a31367ff0c62652f19931b62d531d3da2 (diff)
downloadbrdo-caa684125b15d900670a5edd1ba7c405212a4f6d.tar.gz
brdo-caa684125b15d900670a5edd1ba7c405212a4f6d.tar.bz2
- Patch #26966 by catch, skiminki, aaronbauman et al: fixed comment links when paging is used.
Diffstat (limited to 'modules/comment/comment.admin.inc')
-rw-r--r--modules/comment/comment.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.admin.inc b/modules/comment/comment.admin.inc
index e41a0d63c..0806d7535 100644
--- a/modules/comment/comment.admin.inc
+++ b/modules/comment/comment.admin.inc
@@ -86,7 +86,7 @@ function comment_admin_overview($type = 'new', $arg) {
foreach ($result as $comment) {
$options[$comment->cid] = array(
- 'subject' => l($comment->subject, 'node/' . $comment->nid, array('attributes' => array('title' => truncate_utf8($comment->comment, 128)), 'fragment' => 'comment-' . $comment->cid)),
+ 'subject' => l($comment->subject, 'comment/' . $comment->cid, array('attributes' => array('title' => truncate_utf8($comment->comment, 128)), 'fragment' => 'comment-' . $comment->cid)),
'author' => theme('username', $comment),
'posted_in' => l($comment->node_title, 'node/' . $comment->nid),
'time' => format_date($comment->timestamp, 'small'),