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/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index bb42736daf..c2eb48137a 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -145,7 +145,6 @@
  • [PHPBB3-11265] - Functional tests do not assert that board installation succeeded
  • [PHPBB3-11269] - Travis functional test case errors
  • [PHPBB3-11278] - Firebird tables are not removed correctly on 3.0.9-rc1 update
  • -
  • [PHPBB3-11288] - Search fooled by hyphens
  • [PHPBB3-11291] - "Could not open input file: ../composer.phar" error during phing's create-package
  • [PHPBB3-11292] - Newlines removed in display of PM reports, no clickable links in PM reports
  • [PHPBB3-11301] - "String offset cast occured" error on PHP 5.4
  • @@ -185,6 +184,9 @@
  • [PHPBB3-11674] - Do not include vendor folder if there are no dependencies.
  • [PHPBB3-11524] - MySQL Upgrader throws warnings on PHP 5.4
  • [PHPBB3-11720] - Reporting posts leads to white page error
  • +
  • [PHPBB3-11769] - Wrong poster in subscription email when poster is using the Quote button
  • +
  • [PHPBB3-11775] - Error while moving posts to a new topic
  • +
  • [PHPBB3-11802] - Undefined variable $browser in /download/file.php
  • Improvement