diff --git a/sites/all/modules/print/print.pages.inc b/sites/all/modules/print/print.pages.inc index 07e3cf6..b6d98c5 100644 --- a/sites/all/modules/print/print.pages.inc +++ b/sites/all/modules/print/print.pages.inc @@ -560,7 +560,13 @@ function _print_generate_node($nid, $cid = NULL, $format = PRINT_HTML_FORMAT, $t if (function_exists('comment_render') && (($cid != NULL) || ($print_comments))) { // Print only the requested comment (or if $cid is NULL, all of them) - $comments = comment_render($node, $cid); + // Replace of "$comments = comment_render($node, $cid);" to print node comments: + if (!empty($node->comment)) { + $comments = comment_render($node, $cid); + } + else if (!empty($node->node_comment)) { + $comments = nodecomment_render($node, $cid); + } // Remove the comment forms $comments = preg_replace('!