1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00

[ticket/11825] Move schema_data.php into includes/ instead of phpbb/

PHPBB3-11825
This commit is contained in:
Dhruv 2013-09-03 19:44:07 +05:30
parent 8d6b03c438
commit 19074a3420
3 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ if (!is_writable($schema_path))
define('IN_PHPBB', true);
require(dirname(__FILE__) . '/../phpbb/db/schema_data.php');
require(dirname(__FILE__) . '/../includes/db/schema_data.php');
require(dirname(__FILE__) . '/../phpbb/db/tools.php');
$dbms_type_map = phpbb_db_tools::get_dbms_type_map();

View File

@ -56,7 +56,7 @@ echo "USE $dbname;$newline$newline";
@set_time_limit(0);
require($phpbb_root_path . 'phpbb/db/schema_data.' . $phpEx);
require($phpbb_root_path . 'includes/db/schema_data.' . $phpEx);
require($phpbb_root_path . 'phpbb/db/tools.' . $phpEx);
$dbms_type_map = phpbb_db_tools::get_dbms_type_map();