diff --git a/modules/forum/forum-submitted.tpl.php b/modules/forum/forum-submitted.tpl.php
index 8695e3464bb2..c025a9862748 100644
--- a/modules/forum/forum-submitted.tpl.php
+++ b/modules/forum/forum-submitted.tpl.php
@@ -18,11 +18,12 @@
*/
?>
- by !author', array(
+
+ $time,
'!author' => $author,
)); ?>
+
diff --git a/modules/forum/forum-topic-list.tpl.php b/modules/forum/forum-topic-list.tpl.php
index 08d9ec56bab6..9757b6049055 100644
--- a/modules/forum/forum-topic-list.tpl.php
+++ b/modules/forum/forum-topic-list.tpl.php
@@ -41,7 +41,14 @@
| icon; ?> |
- title; ?> |
+
+
+ title; ?>
+
+
+ created; ?>
+
+ |
moved): ?>
message; ?> |
@@ -52,7 +59,6 @@
new_text; ?>
- created; ?> |
last_reply; ?> |
diff --git a/modules/forum/forum.module b/modules/forum/forum.module
index 93abb925b439..9737e881ea0d 100644
--- a/modules/forum/forum.module
+++ b/modules/forum/forum.module
@@ -691,7 +691,6 @@ function forum_get_topics($tid, $sortby, $forum_per_page) {
NULL,
array('data' => t('Topic'), 'field' => 'n.title'),
array('data' => t('Replies'), 'field' => 'ncs.comment_count'),
- array('data' => t('Created'), 'field' => 'n.created'),
array('data' => t('Last reply'), 'field' => 'ncs.last_comment_timestamp'),
);