diff options
Diffstat (limited to 'phpBB/index.php')
| -rw-r--r-- | phpBB/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index e01fdc6809..97bf667475 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -14,13 +14,13 @@ define('IN_PHPBB', true); $phpbb_root_path = './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); +include($phpbb_root_path . 'includes/functions_display.' . $phpEx); // Start session management -$user->start(); +$user->session_begin(); $auth->acl($user->data); $user->setup(); -include($phpbb_root_path . 'includes/functions_display.' . $phpEx); display_forums('', $config['load_moderators']); // Set some stats, get posts count from forums data if we... hum... retrieve all forums data |
