From aa8a051a981954b1d15d116fd2192d1e4778c8f6 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Thu, 3 May 2001 22:10:23 +0000 Subject: Moved config, images vars to arrays and various other fixes git-svn-id: file:///svn/phpbb/trunk@237 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'phpBB/index.php') diff --git a/phpBB/index.php b/phpBB/index.php index adfd585707..33211f2ffd 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -122,15 +122,15 @@ if($total_categories) ( $category_rows[$i]["cat_id"] == $viewcat) ) { - $folder_image = ""; + $folder_image = ""; $posts = $forum_rows[$j]["forum_posts"]; $topics = $forum_rows[$j]["forum_topics"]; if($forum_rows[$j]["username"] != "" && $forum_rows[$j]["post_time"] > 0) { - $last_post_time = create_date($date_format, $forum_rows[$j]["post_time"], $sys_timezone); + $last_post_time = create_date($board_config['default_dateformat'], $forum_rows[$j]["post_time"], $board_config['default_timezone']); $last_post = $last_post_time."
by "; $last_post .= "".$forum_rows[$j]["username"]." \"View"; + $last_post .= "\">".$forum_rows[$j]["username"]." \"View"; } else { -- cgit v1.2.1