theme_comment_preview

  1. drupal
    1. 4.7
    2. 5 comment.module
Versions
4.7 – 5 theme_comment_preview($comment, $links = array(), $visible = 1)

Code

modules/comment.module, line 1462

<?php
function theme_comment_preview($comment, $links = array(), $visible = 1) {
  $output = '<div class="preview">';
  $output .= theme('comment_view', $comment, $links, $visible);
  $output .= '</div>';
  return $output;
}
?>