aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewforum.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-06-21 12:36:00 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-06-21 12:36:00 +0000
commit251a5b8f94c956f722660207f6ceb67057b6de81 (patch)
treecc0829a82cc896366ff42c19bc0b029b686ca9d7 /phpBB/viewforum.php
parent3d36530308e85b4ec7da1e9ffb26e1bbc93cb5f2 (diff)
downloadforums-251a5b8f94c956f722660207f6ceb67057b6de81.tar
forums-251a5b8f94c956f722660207f6ceb67057b6de81.tar.gz
forums-251a5b8f94c956f722660207f6ceb67057b6de81.tar.bz2
forums-251a5b8f94c956f722660207f6ceb67057b6de81.tar.xz
forums-251a5b8f94c956f722660207f6ceb67057b6de81.zip
only small addition for further use...
git-svn-id: file:///svn/phpbb/trunk@4162 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r--phpBB/viewforum.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index b2274b5522..80285cbe74 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -509,6 +509,8 @@ if ($forum_data['forum_type'] == FORUM_POST)
$last_post_time = $user->format_date($row['topic_last_post_time']);
+ $last_view_time = $user->format_date($row['topic_last_view_time']);
+
// This will allow the style designer to output a different header
// or even seperate the list of announcements from sticky and normal
// topics
@@ -522,6 +524,7 @@ if ($forum_data['forum_type'] == FORUM_POST)
'FIRST_POST_TIME' => $first_post_time,
'LAST_POST_TIME' => $last_post_time,
'LAST_POST_AUTHOR' => $last_post_author,
+ 'LAST_VIEW_TIME' => $last_view_time,
'GOTO_PAGE' => $goto_page,
'REPLIES' => ($auth->acl_get('m_approve')) ? $row['topic_replies_real'] : $row['topic_replies'],
'VIEWS' => $row['topic_views'],