aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-09-03 19:44:07 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-09-03 19:44:07 +0530
commit19074a3420029cfdf363a8afeb98443018a0e767 (patch)
treeab4c3034424c7c636f2c1ee234761df4609e223a
parent8d6b03c438392cebed941491684ff835bf7136a8 (diff)
downloadforums-19074a3420029cfdf363a8afeb98443018a0e767.tar
forums-19074a3420029cfdf363a8afeb98443018a0e767.tar.gz
forums-19074a3420029cfdf363a8afeb98443018a0e767.tar.bz2
forums-19074a3420029cfdf363a8afeb98443018a0e767.tar.xz
forums-19074a3420029cfdf363a8afeb98443018a0e767.zip
[ticket/11825] Move schema_data.php into includes/ instead of phpbb/
PHPBB3-11825
-rw-r--r--phpBB/develop/create_schema_files.php2
-rw-r--r--phpBB/develop/mysql_upgrader.php2
-rw-r--r--phpBB/includes/db/schema_data.php (renamed from phpBB/phpbb/db/schema_data.php)0
3 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php
index 3aacd31e70..9ffc8d229f 100644
--- a/phpBB/develop/create_schema_files.php
+++ b/phpBB/develop/create_schema_files.php
@@ -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();
diff --git a/phpBB/develop/mysql_upgrader.php b/phpBB/develop/mysql_upgrader.php
index 340112fa38..3decee306a 100644
--- a/phpBB/develop/mysql_upgrader.php
+++ b/phpBB/develop/mysql_upgrader.php
@@ -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();
diff --git a/phpBB/phpbb/db/schema_data.php b/phpBB/includes/db/schema_data.php
index 9940a9380f..9940a9380f 100644
--- a/phpBB/phpbb/db/schema_data.php
+++ b/phpBB/includes/db/schema_data.php