- Removed hard-coded dependency on comment module.

4.0.x
Dries Buytaert 2002-12-07 22:09:42 +00:00
parent ffacd9b525
commit c6fc710f0e
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ function queue_view($nid) {
$theme->box(t("Moderate"), $output);
}
if ($node->comment && variable_get("queue_show_comments", 1)) {
comment_render($node->nid);
module_invoke("comment", "render", $node->nid);
}
$theme->footer();
}