mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/12962] Fix Line Endings in bootstrap
PHPBB3-12962
This commit is contained in:
parent
e78210dc96
commit
1c88a2cb25
1 changed files with 40 additions and 40 deletions
|
@ -1,40 +1,40 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* This file is part of the phpBB Forum Software package.
|
* This file is part of the phpBB Forum Software package.
|
||||||
*
|
*
|
||||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||||
*
|
*
|
||||||
* For full copyright and license information, please see
|
* For full copyright and license information, please see
|
||||||
* the docs/CREDITS.txt file.
|
* the docs/CREDITS.txt file.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define('IN_PHPBB', true);
|
define('IN_PHPBB', true);
|
||||||
$phpbb_root_path = 'phpBB/';
|
$phpbb_root_path = 'phpBB/';
|
||||||
$phpEx = 'php';
|
$phpEx = 'php';
|
||||||
require_once $phpbb_root_path . 'includes/startup.php';
|
require_once $phpbb_root_path . 'includes/startup.php';
|
||||||
|
|
||||||
$table_prefix = 'phpbb_';
|
$table_prefix = 'phpbb_';
|
||||||
require_once $phpbb_root_path . 'includes/constants.php';
|
require_once $phpbb_root_path . 'includes/constants.php';
|
||||||
require_once $phpbb_root_path . 'phpbb/class_loader.' . $phpEx;
|
require_once $phpbb_root_path . 'phpbb/class_loader.' . $phpEx;
|
||||||
require_once($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
|
require_once($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
|
||||||
|
|
||||||
$phpbb_class_loader_mock = new \phpbb\class_loader('phpbb_mock_', $phpbb_root_path . '../tests/mock/', "php");
|
$phpbb_class_loader_mock = new \phpbb\class_loader('phpbb_mock_', $phpbb_root_path . '../tests/mock/', "php");
|
||||||
$phpbb_class_loader_mock->register();
|
$phpbb_class_loader_mock->register();
|
||||||
$phpbb_class_loader_ext = new \phpbb\class_loader('\\', $phpbb_root_path . 'ext/', "php");
|
$phpbb_class_loader_ext = new \phpbb\class_loader('\\', $phpbb_root_path . 'ext/', "php");
|
||||||
$phpbb_class_loader_ext->register();
|
$phpbb_class_loader_ext->register();
|
||||||
$phpbb_class_loader = new \phpbb\class_loader('phpbb\\', $phpbb_root_path . 'phpbb/', "php");
|
$phpbb_class_loader = new \phpbb\class_loader('phpbb\\', $phpbb_root_path . 'phpbb/', "php");
|
||||||
$phpbb_class_loader->register();
|
$phpbb_class_loader->register();
|
||||||
|
|
||||||
require_once 'test_framework/phpbb_test_case_helpers.php';
|
require_once 'test_framework/phpbb_test_case_helpers.php';
|
||||||
require_once 'test_framework/phpbb_test_case.php';
|
require_once 'test_framework/phpbb_test_case.php';
|
||||||
require_once 'test_framework/phpbb_database_test_case.php';
|
require_once 'test_framework/phpbb_database_test_case.php';
|
||||||
require_once 'test_framework/phpbb_database_test_connection_manager.php';
|
require_once 'test_framework/phpbb_database_test_connection_manager.php';
|
||||||
|
|
||||||
if (version_compare(PHP_VERSION,'5.3.19',">="))
|
if (version_compare(PHP_VERSION,'5.3.19',">="))
|
||||||
{
|
{
|
||||||
require_once 'test_framework/phpbb_functional_test_case.php';
|
require_once 'test_framework/phpbb_functional_test_case.php';
|
||||||
require_once 'test_framework/phpbb_ui_test_case.php';
|
require_once 'test_framework/phpbb_ui_test_case.php';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue