| 6 template.php | phptemplate_comment_submitted($comment) |
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),
));
}
Login or register to post comments