HB/onyx2/modules/phpbb/main.php
2020-11-15 17:31:22 +01:00

11 lines
No EOL
263 B
PHP

<?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);
?>