aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewforum.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-05-02 00:50:27 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-05-02 00:50:27 +0000
commit3ffd49782cf578d7af722a1f1054d1ef8f048eb8 (patch)
tree231003a3f9f34e39342ea613a31e84ad2b9ebb30 /phpBB/viewforum.php
parent65bf7081c1ace138cd5ad1231bf62fc87f94529e (diff)
downloadforums-3ffd49782cf578d7af722a1f1054d1ef8f048eb8.tar
forums-3ffd49782cf578d7af722a1f1054d1ef8f048eb8.tar.gz
forums-3ffd49782cf578d7af722a1f1054d1ef8f048eb8.tar.bz2
forums-3ffd49782cf578d7af722a1f1054d1ef8f048eb8.tar.xz
forums-3ffd49782cf578d7af722a1f1054d1ef8f048eb8.zip
Updated to use create_date rather than date
git-svn-id: file:///svn/phpbb/trunk@227 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r--phpBB/viewforum.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 91295ebc89..1205800e31 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -155,7 +155,7 @@ if($total_topics)
}
$topic_poster = stripslashes($topic_rowset[$x]["username"]);
$views = $topic_rowset[$x]["topic_views"];
- $last_post_time = date($date_format, $topic_rowset[$x]["post_time"]);
+ $last_post_time = create_date($date_format, $topic_rowset[$x]["post_time"], $sys_timezone);
$last_post_user = $topic_rowset[$x]["user2"];
$folder_img = "<img src=\"images/folder.gif\">";
$template->assign_block_vars(
@@ -167,7 +167,7 @@ if($total_topics)
"REPLIES" => $replies,
"TOPIC_TITLE" => $topic_title,
"VIEWS" => $views,
- "LAST_POST" => $last_post_time . "<br><a href=\"profile.$phpEx?mode=viewprofile&".POST_USERS_URL."=".$topic_rowset[$x]["id2"]."\">" . $last_post_user ."</a>"));
+ "LAST_POST" => $last_post_time . "<br />$l_by <a href=\"profile.$phpEx?mode=viewprofile&".POST_USERS_URL."=".$topic_rowset[$x]["id2"]."\">" . $last_post_user ."</a>"));
}
$count = 1;