1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

Moved include files

git-svn-id: file:///svn/phpbb/trunk@94 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt
2001-03-09 23:33:06 +00:00
parent 6be03b553d
commit d3d031d9ee
12 changed files with 238 additions and 206 deletions

View File

@@ -24,6 +24,9 @@
include('extension.inc');
include('common.'.$phpEx);
$pagetype = "index";
$page_title = "Forum Index";
$total_users = get_user_count($db, "");
$total_posts = get_total_posts($db, "");
$newest_userdata = get_newest_user($db, "");
@@ -36,9 +39,7 @@ if(empty($viewcat))
$viewcat = -1;
}
$pagetype = "index";
$page_title = "Forum Index";
include('page_header.'.$phpEx);
include('includes/page_header.'.$phpEx);
$template->set_block("body", "catrow", "cats");
$template->set_block("catrow", "forumrow", "forums");
@@ -182,5 +183,5 @@ else
}
$template->pparse("output", "body");
include('page_tail.'.$phpEx);
include('includes/page_tail.'.$phpEx);
?>