theme_comment_flat_collapsed
- Versions
- 4.6
theme_comment_flat_collapsed($comment,$threshold)- 4.7 – 5
theme_comment_flat_collapsed($comment)- 6
theme_comment_flat_collapsed($comment, $node)
Code
modules/comment.module, line 1565
<?php
function theme_comment_flat_collapsed($comment, $threshold) {
if (comment_visible($comment, $threshold)) {
return theme('comment_view', $comment, '', 0);
}
return '';
}
?>Login or register to post comments 