From a6121c15033d1dee17fc5c504d06035906d0f6b8 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Sat, 15 Jun 2002 13:48:08 +0000 Subject: - fixing some incorrect l*() calls. - fixing node_feed() to work with tax feeds. Thanks Moshe. --- modules/comment.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/comment.module') diff --git a/modules/comment.module b/modules/comment.module index 3dc248914..1d8930f21 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -667,7 +667,7 @@ function comment_node_link($node) { $output .= " titleauthoroperations"; while ($comment = db_fetch_object($result)) { - $output .= "". l($comment->subject, array("id" => $node->nid, "cid" => $comment->cid), "node", $comment->cid) ."". format_name($comment) ."". l(t("view comment"), array("id" => $node->nid, "cid" => $comment->cid ."#". $comment->cid)) ."". la(t("edit comment"), array("mod" => "comment", "op" => "edit", "id" => $comment->cid)) ."". la(t("delete comment"), array("mod" => "comment", "op" => "delete", "id" => $comment->cid)) .""; + $output .= "". l($comment->subject, array("id" => $node->nid, "cid" => $comment->cid), "node", $comment->cid) ."". format_name($comment) ."". l(t("view comment"), array("id" => $node->nid, "cid" => $comment->cid), $comment->cid) ."". la(t("edit comment"), array("mod" => "comment", "op" => "edit", "id" => $comment->cid)) ."". la(t("delete comment"), array("mod" => "comment", "op" => "delete", "id" => $comment->cid)) .""; } $output .= ""; -- cgit v1.2.3