theme_comment_preview
Definition
theme_comment_preview($comment, $links = array(), $visible = 1)
modules/comment/comment.module, line 1681
Code
<?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;
}
?> 