diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-09-20 09:55:56 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-09-20 09:55:56 +0200 |
commit | e23d2e7b2057bcbd2a2be61a4ee2c1127d8b46cb (patch) | |
tree | 270b71ee7d5213cdc40e9c02d22d51877b1b8b58 /phpBB/phpbb | |
parent | 0a6015ad4b3a0f0cb3528edc7836099f9d89fec4 (diff) | |
parent | e00545588145e7d4d33cb9780673f36a6049f0eb (diff) | |
download | forums-e23d2e7b2057bcbd2a2be61a4ee2c1127d8b46cb.tar forums-e23d2e7b2057bcbd2a2be61a4ee2c1127d8b46cb.tar.gz forums-e23d2e7b2057bcbd2a2be61a4ee2c1127d8b46cb.tar.bz2 forums-e23d2e7b2057bcbd2a2be61a4ee2c1127d8b46cb.tar.xz forums-e23d2e7b2057bcbd2a2be61a4ee2c1127d8b46cb.zip |
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus:
[prep-release-3.1.0-RC4] Update phpBB Version for RC4 development
[prep-release-3.1.0-RC4] Add changelog for 3.1.0-RC4
[prep-release-3.1.0-RC4] Prepare Changelog
[prep-release-3.1.0-RC4] Add migration for 3.1.0-RC4
[prep-release-3.1.0-RC4] Update version to 3.1.0-RC4
Conflicts:
build/build.xml
phpBB/includes/constants.php
phpBB/install/schemas/schema_data.sql
phpBB/styles/prosilver/style.cfg
phpBB/styles/subsilver2/style.cfg
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/rc4.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/rc4.php b/phpBB/phpbb/db/migration/data/v310/rc4.php new file mode 100644 index 0000000000..47de8291c1 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/rc4.php @@ -0,0 +1,32 @@ +<?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 rc4 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v310\rc3', + '\phpbb\db\migration\data\v310\notifications_use_full_name', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.0-RC4')), + ); + } +} |