diff options
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.module | 1 | ||||
-rw-r--r-- | modules/comment/comment.tpl.php | 7 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index b279ef324..2a83aced0 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -2258,6 +2258,7 @@ function template_preprocess_comment(&$variables) { $variables['title'] = l($comment->subject, $uri['path'], $uri['options']); $variables['permalink'] = l(t('Permalink'), $uri['path'], $uri['options']); + $variables['submitted'] = t('Submitted by !username on !datetime', array('!username' => $variables['author'], '!datetime' => $variables['created'])); // Preprocess fields. field_attach_preprocess('comment', $comment, $variables['elements'], $variables); diff --git a/modules/comment/comment.tpl.php b/modules/comment/comment.tpl.php index 314da57ca..adf93b31c 100644 --- a/modules/comment/comment.tpl.php +++ b/modules/comment/comment.tpl.php @@ -19,6 +19,8 @@ * desired parameters on the $comment->changed variable. * - $new: New comment marker. * - $permalink: Comment permalink. + * - $submitted: Submission information created from $author and $created during + * template_preprocess_comment(). * - $picture: Authors picture. * - $signature: Authors signature. * - $status: Comment status. Possible values are: @@ -69,10 +71,7 @@ <div class="submitted"> <?php print $permalink; ?> - <?php - print t('Submitted by !username on !datetime.', - array('!username' => $author, '!datetime' => $created)); - ?> + <?php print $submitted; ?> </div> <div class="content"<?php print $content_attributes; ?>> |