In comment.tpl the $submitted variable is printed to display the "Submitted by userx on blah blah blah".

I'd like to be able to change the output of this variable to maybe something like, "userx submitted on blah blah blah"

But I don't know where this variable is defined so I can change it.

Comments

mooffie’s picture

Ignore this variable. Replace print $submitted with:

print t('!username submitted on !date the following:', array(
    '!username' => theme('username', $comment),
    '!date' => format_date($comment->timestamp)
));