diff options
| author | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-09-08 18:24:34 +0000 |
|---|---|---|
| committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-09-08 18:24:34 +0000 |
| commit | 9b64a5d50cc491d4a8d256104db865463119c7bc (patch) | |
| tree | 2a603b95d0d6b9e1682311d0aca97b7759c1cbeb /phpBB/modcp.php | |
| parent | 19ae53a5b142e946da042eef2209dba6893ce09a (diff) | |
| download | forums-9b64a5d50cc491d4a8d256104db865463119c7bc.tar forums-9b64a5d50cc491d4a8d256104db865463119c7bc.tar.gz forums-9b64a5d50cc491d4a8d256104db865463119c7bc.tar.bz2 forums-9b64a5d50cc491d4a8d256104db865463119c7bc.tar.xz forums-9b64a5d50cc491d4a8d256104db865463119c7bc.zip | |
Altered layout of phpbb_config table
git-svn-id: file:///svn/phpbb/trunk@1010 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/modcp.php')
| -rw-r--r-- | phpBB/modcp.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/modcp.php b/phpBB/modcp.php index 82d6d232a7..8ab945fb23 100644 --- a/phpBB/modcp.php +++ b/phpBB/modcp.php @@ -688,7 +688,7 @@ switch($mode) $poster_id = $postrow[$i]['user_id']; $poster = stripslashes($postrow[$i]['username']); - $post_date = create_date($board_config['default_dateformat'], $postrow[$i]['post_time'], $board_config['default_timezone']); + $post_date = create_date($board_config['default_dateformat'], $postrow[$i]['post_time'], $board_config['board_timezone']); if($poster_id == ANONYMOUS && $postrow[$i]['post_username'] != '') { @@ -919,7 +919,7 @@ switch($mode) $u_view_topic = append_sid("viewtopic.$phpEx?".POST_TOPIC_URL."=$topic_id"); $topic_replies = $topics[$x]['topic_replies']; - $last_post_time = create_date($board_config['default_dateformat'], $topics[$x]['post_time'], $board_config['default_timezone']); + $last_post_time = create_date($board_config['default_dateformat'], $topics[$x]['post_time'], $board_config['board_timezone']); $template->assign_block_vars("topicrow", array( |
