summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--themes/engines/phptemplate/phptemplate.engine4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/engines/phptemplate/phptemplate.engine b/themes/engines/phptemplate/phptemplate.engine
index e64b554ea..22b1d9805 100644
--- a/themes/engines/phptemplate/phptemplate.engine
+++ b/themes/engines/phptemplate/phptemplate.engine
@@ -235,14 +235,14 @@ function phptemplate_comment($comment, $links = 0) {
return _phptemplate_callback('comment', array(
'author' => format_name($comment),
'comment' => $comment,
- array('%a' => format_name($comment),
- '%b' => format_date($comment->timestamp))),
'content' => $comment->comment,
'date' => format_date($comment->timestamp),
'links' => $links,
'new' => $comment->new ? t('new') : '',
'picture' => theme_get_setting('toggle_comment_user_picture') ? theme('user_picture', $comment) : '',
'submitted' => t('Submitted by %a on %b.',
+ array('%a' => format_name($comment),
+ '%b' => format_date($comment->timestamp))),
'title' => l($comment->subject, $_GET['q'], NULL, NULL, "comment-$comment->cid")
));
}