theme_comment_folded

  1. drupal
    1. 4.7
    2. 5 comment.module
    3. 6 theme.php
Versions
4.7 – 5 theme_comment_folded($comment)
6 theme_comment_folded()

Code

modules/comment.module, line 1563

<?php
function theme_comment_folded($comment) {
  $output  = "<div class=\"comment-folded\">\n";
  $output .= ' <span class="subject">' . l($comment->subject, comment_node_url() . '/' . $comment->cid, NULL, NULL, "comment-$comment->cid") . ' ' . theme('mark', $comment->new) . '</span> ';
  $output .= '<span class="credit">' . t('by') . ' ' . theme('username', $comment) . "</span>\n";
  $output .= "</div>\n";
  return $output;
}
?>