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