diff options
Diffstat (limited to 'modules/node/node.tpl.php')
-rw-r--r-- | modules/node/node.tpl.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.tpl.php b/modules/node/node.tpl.php index ae03d400d..3b50ebcd4 100644 --- a/modules/node/node.tpl.php +++ b/modules/node/node.tpl.php @@ -13,7 +13,7 @@ * given element. * - $user_picture: The node author's picture from user-picture.tpl.php. * - $date: Formatted creation date (use $created to reformat with - * format_date()). + * format_date()). This data is excepted to be sanitized beforehand. * - $name: Themed username of node author output from theme_username(). * - $node_url: Direct url of the current node. * - $terms: the themed list of taxonomy term links output from theme_links(). @@ -88,8 +88,8 @@ <?php if ($display_submitted): ?> <span class="submitted"> <?php - print t('Submitted by !username on @datetime', - array('!username' => $name, '@datetime' => $date)); + print t('Submitted by !username on !datetime', + array('!username' => $name, '!datetime' => $date)); ?> </span> <?php endif; ?> |