From 50e4d79a3e8c1f93e7999ed75847b057f10fdd65 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 17 Sep 2002 19:38:46 +0000 Subject: [PATCH] - Fix problem of comments not showing when viewed through node.php. Patch by Moshe. --- node.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.php b/node.php index c80113e55f6..c1124b43cc0 100644 --- a/node.php +++ b/node.php @@ -15,7 +15,7 @@ function node_render($node) { node_view($node); if (function_exists("comment_render") && $node->comment) { - comment_render($id, $cid); + comment_render($node, $cid); } $theme->footer();