1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-30 11:11:23 +02:00

Merge pull request #1695 from dhruvgoel92/ticket/11825

[ticket/11825] Move schema_data.php into includes/ instead of phpbb/
This commit is contained in:
Nathan Guse 2013-09-05 11:17:31 -07:00
commit f71b6c8ea5
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();