diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-02 15:50:11 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-02 15:50:11 +0000 |
commit | c6888eb18e5862154297a870f348d60a7e608de7 (patch) | |
tree | af1970637400f4ba66085e7d22836301cda3b9e2 /phpBB/index.php | |
parent | 9def7a65e39cdd65b0d32e28888801c584917549 (diff) | |
download | forums-c6888eb18e5862154297a870f348d60a7e608de7.tar forums-c6888eb18e5862154297a870f348d60a7e608de7.tar.gz forums-c6888eb18e5862154297a870f348d60a7e608de7.tar.bz2 forums-c6888eb18e5862154297a870f348d60a7e608de7.tar.xz forums-c6888eb18e5862154297a870f348d60a7e608de7.zip |
Various updates, forum links, "improve" forum management, cleanups, blah blah, note the schema changes, note also that forum management may misbehave ... reports on wrong doings are welcome ... seem to be having problems with some mcp functions under apache/win32
git-svn-id: file:///svn/phpbb/trunk@3961 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/index.php')
-rw-r--r-- | phpBB/index.php | 11 |
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); |