function phptemplate_comment_submitted

6.x template.php phptemplate_comment_submitted($comment)

Returns the themed submitted-by string for the comment.

File

drupal-6.x/themes/garland/template.php, line 73

Code

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