diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-15 13:48:08 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-15 13:48:08 +0000 |
commit | a6121c15033d1dee17fc5c504d06035906d0f6b8 (patch) | |
tree | 31795b26b03bf3c4d834a978a7af998785b58e47 /modules/comment.module | |
parent | 66ccfb3f8dd99b3757beebaf2f7363820b8c20aa (diff) | |
download | brdo-a6121c15033d1dee17fc5c504d06035906d0f6b8.tar.gz brdo-a6121c15033d1dee17fc5c504d06035906d0f6b8.tar.bz2 |
- fixing some incorrect l*() calls.
- fixing node_feed() to work with tax feeds. Thanks Moshe.
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 3dc248914..1d8930f21 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -667,7 +667,7 @@ function comment_node_link($node) { $output .= " <tr><th>title</th><th>author</th><th colspan=\"3\">operations</th></tr>"; while ($comment = db_fetch_object($result)) { - $output .= "<tr><td>". l($comment->subject, array("id" => $node->nid, "cid" => $comment->cid), "node", $comment->cid) ."</td><td>". format_name($comment) ."</td><td>". l(t("view comment"), array("id" => $node->nid, "cid" => $comment->cid ."#". $comment->cid)) ."</td><td>". la(t("edit comment"), array("mod" => "comment", "op" => "edit", "id" => $comment->cid)) ."</td><td>". la(t("delete comment"), array("mod" => "comment", "op" => "delete", "id" => $comment->cid)) ."</td></tr>"; + $output .= "<tr><td>". l($comment->subject, array("id" => $node->nid, "cid" => $comment->cid), "node", $comment->cid) ."</td><td>". format_name($comment) ."</td><td>". l(t("view comment"), array("id" => $node->nid, "cid" => $comment->cid), $comment->cid) ."</td><td>". la(t("edit comment"), array("mod" => "comment", "op" => "edit", "id" => $comment->cid)) ."</td><td>". la(t("delete comment"), array("mod" => "comment", "op" => "delete", "id" => $comment->cid)) ."</td></tr>"; } $output .= "</table>"; |