diff options
Diffstat (limited to 'themes/example/example.theme')
-rw-r--r-- | themes/example/example.theme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/example/example.theme b/themes/example/example.theme index af4d900b4..0a34d71b9 100644 --- a/themes/example/example.theme +++ b/themes/example/example.theme @@ -63,7 +63,7 @@ <TD> <?php - echo strtr(t("by %a on %b"), array("%a" => format_username($node->userid), "%b" => format_date($node->timestamp, "small"))); + echo strtr(t("by %a on %b"), array("%a" => format_username($node->userid, $node->name), "%b" => format_date($node->timestamp, "small"))); ?> </TD> @@ -120,7 +120,7 @@ echo t("Author") .":"; echo " </TD>"; echo " <TD COLSPAN=\"2\">"; - echo format_username($comment->userid) ." on ". format_date($comment->timestamp); + echo format_username($comment->userid, $comment->name) ." on ". format_date($comment->timestamp); echo " </TD>"; echo " </TR>"; |