diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-05-30 17:53:03 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-05-30 17:53:03 +0200 |
commit | 807e000b912a30f3c8010dd7c2acdfa04f6c5392 (patch) | |
tree | c8297b272e4bfeff5d64ee2bfea9ca6418971ad8 /phpBB/phpbb | |
parent | fda2a774b7d5fe2d1f99be76f33b2e4925c20713 (diff) | |
parent | da48b7df22cbca1cfcbe558851dcc52c096b5edc (diff) | |
download | forums-807e000b912a30f3c8010dd7c2acdfa04f6c5392.tar forums-807e000b912a30f3c8010dd7c2acdfa04f6c5392.tar.gz forums-807e000b912a30f3c8010dd7c2acdfa04f6c5392.tar.bz2 forums-807e000b912a30f3c8010dd7c2acdfa04f6c5392.tar.xz forums-807e000b912a30f3c8010dd7c2acdfa04f6c5392.zip |
Merge branch 'prep-release-3.1.0-b4' into develop-ascraeus
* prep-release-3.1.0-b4:
[prep-release-3.1.0-b4] Update phpBB Version for b5 development
[prep-release-3.1.0-b4] Add changelog for 3.1.0-b4
[prep-release-3.1.0-b4] Prepare Changelog
[prep-release-3.1.0-b4] Add migration for 3.1.0-b4
[prep-release-3.1.0-b4] Update version to 3.1.0-b4
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/beta4.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/beta4.php b/phpBB/phpbb/db/migration/data/v310/beta4.php new file mode 100644 index 0000000000..3e91d95178 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/beta4.php @@ -0,0 +1,33 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @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\v310; + +class beta4 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v310\beta3', + '\phpbb\db\migration\data\v310\extensions_version_check_force_unstable', + '\phpbb\db\migration\data\v310\reset_missing_captcha_plugin', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.0-b4')), + ); + } +} |