aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/index.php')
-rw-r--r--phpBB/index.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/phpBB/index.php b/phpBB/index.php
index 8b6b93cf29..2d634ba630 100644
--- a/phpBB/index.php
+++ b/phpBB/index.php
@@ -27,11 +27,12 @@ include($phpbb_root_path . 'common.'.$phpEx);
// Get posted/get info
$mark_read = (isset($_REQUEST['mark'])) ? $_REQUEST['mark'] : '';
+
// Start session management
$user->start();
$user->setup();
$auth->acl($user->data);
-// End session management
+
// Handle marking posts
if ($mark_read == 'forums')
@@ -130,9 +131,13 @@ $template->assign_vars(array(
$page_title = $user->lang['Index'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
+//page_header($user->lang['INDEX']);
+
$template->set_filenames(array(
- 'body' => 'index_body.html'
-));
+ 'body' => 'index_body.html')
+);
+
+//page_footer();
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);