game/onyx2/modules/phpbb/main.php

11 lines
261 B
PHP
Raw Normal View History

2009-11-01 11:00:00 +00:00
<?php
define('IN_PHPBB', true);
$phpbb_root_path = $OPT['dir_forum'];
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
$user->session_begin();
$auth->acl($user->data);
$user->setup();
unset($phpbb_root_path, $phpEx);