function phptemplate_comment_submitted

Returns the themed submitted-by string for the comment.

Archivo

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

Código

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