| Versions | |
|---|---|
| 4.7 – 5 | theme_comment_thread_collapsed($comment) |
| 6 | theme_comment_thread_collapsed($comment, $node) |
modules/
<?php
function theme_comment_thread_collapsed($comment) {
$output = '<div style="margin-left:' . ($comment->depth * 25) . "px;\">\n";
$output .= theme('comment_view', $comment, '', 0);
$output .= "</div>\n";
return $output;
}
?>