| Code:
|
<?define('IN_PHPBB', true);
$site_root_path = './'; // MAY NEED CHANGING
$phpbb_root_path2 = 'forum/'; // MAY NEED CHANGING
$phpbb_root_path = $site_root_path . $phpbb_root_path2;
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.php');
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//
?>
|
| Code:
|
case PAGE_PRIVMSGS:
$location = $lang['Viewing_priv_msgs'];
$location_url = "index.$phpEx?pane=right";
break;
|
| Code:
|
case VIEWING_HOMEPAGE:
$location = $lang['Viewing_Homepage'];
$location_url = "index.$phpEx?pane=right";
break;
|