diff --git a/build/build.xml b/build/build.xml index da45b39867..6b66b81d1e 100644 --- a/build/build.xml +++ b/build/build.xml @@ -4,7 +4,7 @@ - + diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 08804e5ce5..d229b91bd6 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -50,6 +50,7 @@
  1. Changelog
      +
    • Changes since 3.3.0-b1
    • Changes since 3.2.x
    • Changes since 3.2.8-RC1
    • Changes since 3.2.7
    • @@ -141,6 +142,30 @@
      +

      Changes since 3.3.0-b1

      +

      Bug

      + +

      Improvement

      +
        +
      • [PHPBB3-12539] - Live Member Search Improvements
      • +
      • [PHPBB3-12559] - Add forum setting to limit subforums legend to direct children only
      • +
      • [PHPBB3-12574] - Don't require the passwords_manager in the constructor of the auth plugins
      • +
      • [PHPBB3-15958] - Created forums and default forum created during install have diferent options
      • +
      • [PHPBB3-16187] - Correctly display registration using external services
      • +
      • [PHPBB3-16189] - Deprecate inet_ntop and inet_pton wrappers
      • +
      • [PHPBB3-16190] - Deprecate phpbb's checkdnsrr wrapper
      • +
      • [PHPBB3-16195] - Copy forum permissions missing paragraph
      • +
      • [PHPBB3-16196] - Remove random_compat
      • +
      • [PHPBB3-16206] - Remove offsetExists reimplementation in service_collection
      • +
      +

      Changes since 3.2.x

      Bug

        diff --git a/phpBB/phpbb/db/migration/data/v330/v330b2.php b/phpBB/phpbb/db/migration/data/v330/v330b2.php new file mode 100644 index 0000000000..1badc1387a --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v330/v330b2.php @@ -0,0 +1,38 @@ + +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\db\migration\data\v330; + +class v330b2 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return version_compare($this->config['version'], '3.3.0-b2', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v330\add_display_unapproved_posts_config', + '\phpbb\db\migration\data\v330\forums_legend_limit', + '\phpbb\db\migration\data\v330\remove_email_hash', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.3.0-b2')), + ); + } +}