From bf8ac19eaa8d74f9dfd6d597190f5664e7339382 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sun, 4 Oct 2009 18:13:59 +0000 Subject: Move trunk/phpBB to old_trunk/phpBB git-svn-id: file:///svn/phpbb/trunk@10210 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 105 ------------------------------------------------------- 1 file changed, 105 deletions(-) delete mode 100644 phpBB/common.php (limited to 'phpBB/common.php') diff --git a/phpBB/common.php b/phpBB/common.php deleted file mode 100644 index aa72b83612..0000000000 --- a/phpBB/common.php +++ /dev/null @@ -1,105 +0,0 @@ - 443) || (!$secure && $server_port <> 80))) - { - // HTTP HOST can carry a port number... - if (strpos($server_name, ':') === false) - { - $url .= ':' . $server_port; - } - } - - $url .= $script_path; - header('Location: ' . $url); - exit; -} - -// Set PHP error handler to ours -set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler'); - -// enforce the use of the request class -phpbb_request::disable_super_globals(); - -// @todo Syndicate config variables somehow and check them here. It would be also nice to not have so many global vars from the config file (means: re-think layout of config file, maybe require phpbb:: to be set) - -if (!empty(phpbb::$base_config['dbms'])) -{ - // Register DB object. - phpbb::assign('db', phpbb_db_dbal::connect(phpbb::$base_config['dbms'], phpbb::$base_config['dbhost'], phpbb::$base_config['dbuser'], phpbb::$base_config['dbpasswd'], phpbb::$base_config['dbname'], phpbb::$base_config['dbport'], false, defined('PHPBB_DB_NEW_LINK') ? PHPBB_DB_NEW_LINK : false)); -} - -// We do not need the db password any longer, unset for safety purposes -if (!empty(phpbb::$base_config['dbpasswd'])) -{ - unset(phpbb::$base_config['dbpasswd']); -} - -// Register Cache Manager -phpbb::register('acm'); - -// Grab global variables -phpbb_cache::obtain_config(); - -// Register Template -phpbb::register('template'); - -// Register permission class -phpbb::register('acl'); - -// Register user object -phpbb::register('user', false, false, phpbb::$config['auth_method'], PHPBB_ROOT_PATH . 'language/'); - -// Register API -// phpbb::register('api'); - -// Register Plugins -phpbb::$plugins->init(PHPBB_ROOT_PATH . 'plugins/'); - -// Setup Plugins -phpbb::$plugins->setup(); - -?> \ No newline at end of file -- cgit v1.2.1