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-topic-list.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-topic-list.tpl.php')
-rw-r--r-- | modules/forum/forum-topic-list.tpl.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/forum/forum-topic-list.tpl.php b/modules/forum/forum-topic-list.tpl.php index 08d9ec56b..9757b6049 100644 --- a/modules/forum/forum-topic-list.tpl.php +++ b/modules/forum/forum-topic-list.tpl.php @@ -41,7 +41,14 @@ <?php foreach ($topics as $topic): ?> <tr class="<?php print $topic->zebra;?>"> <td class="icon"><?php print $topic->icon; ?></td> - <td class="title"><?php print $topic->title; ?></td> + <td class="title"> + <div> + <?php print $topic->title; ?> + </div> + <div> + <?php print $topic->created; ?> + </div> + </td> <?php if ($topic->moved): ?> <td colspan="3"><?php print $topic->message; ?></td> <?php else: ?> @@ -52,7 +59,6 @@ <a href="<?php print $topic->new_url; ?>"><?php print $topic->new_text; ?></a> <?php endif; ?> </td> - <td class="created"><?php print $topic->created; ?></td> <td class="last-reply"><?php print $topic->last_reply; ?></td> <?php endif; ?> </tr> |