Returns the themed submitted-by string for the comment.

File

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),
  ));
}