theme_comment_preview

Versions
4.6
theme_comment_preview($comment, $links = '', $visible = 1)
4.7 – 5
theme_comment_preview($comment, $links = array(), $visible = 1)

Code

modules/comment.module, line 1435

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