summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-07-30 20:54:02 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-07-30 20:54:02 +0000
commit563c00c92c4baa67cc9fd53538c5d3df060523c2 (patch)
tree2d454163048e1a25f157c67b1136f0f1c64472a1 /themes
parent36f6cdc74a4a4fe944eb2d06003729bdab511bac (diff)
downloadbrdo-563c00c92c4baa67cc9fd53538c5d3df060523c2.tar.gz
brdo-563c00c92c4baa67cc9fd53538c5d3df060523c2.tar.bz2
- Oopsie
Diffstat (limited to 'themes')
-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")
));
}