theme_comment_thread_min
- Versions
- 4.6
theme_comment_thread_min($comment, $threshold, $pid = 0)
Code
modules/comment.module, line 1576
<?php
function theme_comment_thread_min($comment, $threshold, $pid = 0) {
if (comment_visible($comment, $threshold)) {
$output = '<div style="margin-left:'. ($comment->depth * 25) ."px;\">\n";
$output .= theme('comment_view', $comment, '', 0);
$output .= "</div>\n";
}
return $output;
}
?>Login or register to post comments 