diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-28 10:41:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-28 10:41:20 +0000 |
commit | 1115fba0649997f77a70eb4d03b1e4ab1df2d56e (patch) | |
tree | cacef530283715b3a7c94b3bf619ceb3da41b82d /modules/forum/forum-submitted.tpl.php | |
parent | 82d912d863e9d0ad46fef74336e64b24678ce2db (diff) | |
download | brdo-1115fba0649997f77a70eb4d03b1e4ab1df2d56e.tar.gz brdo-1115fba0649997f77a70eb4d03b1e4ab1df2d56e.tar.bz2 |
- Patch #489880 by nbz, Bojhan, Gurpartap Singh: merge 'Created' column with 'Topics'.
Diffstat (limited to 'modules/forum/forum-submitted.tpl.php')
-rw-r--r-- | modules/forum/forum-submitted.tpl.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/forum/forum-submitted.tpl.php b/modules/forum/forum-submitted.tpl.php index 8695e3464..c025a9862 100644 --- a/modules/forum/forum-submitted.tpl.php +++ b/modules/forum/forum-submitted.tpl.php @@ -18,11 +18,12 @@ */ ?> <?php if ($time): ?> - <?php print t( - '@time ago<br />by !author', array( + <span class="submitted"> + <?php print t('By !author @time ago', array( '@time' => $time, '!author' => $author, )); ?> + </span> <?php else: ?> <?php print t('n/a'); ?> <?php endif; ?> |