From 96f297021cce5e69e16606233a9175987517feda Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 1 Jul 2009 05:00:24 +0000 Subject: #506650 by catch: Remove unnecessary comment_node_url(). --- modules/comment/comment.module | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'modules/comment/comment.module') diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 28815fafe..7b6180f20 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -859,16 +859,6 @@ function comment_access($op, $comment) { } } -/** - * A simple helper function. - * - * @return - * The 0th and the 1st path components joined by a slash. - */ -function comment_node_url() { - return arg(0) . '/' . arg(1); -} - /** * Accepts a submission of new or changed comment content. * @@ -1011,11 +1001,11 @@ function comment_links($comment, $return = 1) { global $user; $links = array(); - // If viewing just this comment, link back to the node. + // If viewing just this comment, link back to the in-context view. if ($return) { $links['comment_parent'] = array( 'title' => t('parent'), - 'href' => comment_node_url(), + 'href' => 'comment/' . $comment->cid, 'fragment' => "comment-$comment->cid" ); } -- cgit v1.2.3