phptemplate_comment_submitted

Definition

phptemplate_comment_submitted($comment)
themes/garland/template.php, line 73

Code

<?php
function phptemplate_comment_submitted($comment) {
  return t('!datetime — !username',
    array(
      '!username' => theme('username', $comment),
      '!datetime' => format_date($comment->timestamp)
    ));
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.