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
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.