diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-10-07 22:11:14 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-10-07 22:11:14 +0200 |
commit | 5b186c936d6d6d67b8b0551a990522fdc68e2a4c (patch) | |
tree | af8267503ec08016417f2f6708cdd0aa93575e95 /phpBB/phpbb | |
parent | 63bdd193e0da90dc12ff2b6523b255f832420d3b (diff) | |
parent | eed4d0d30f6732474d01c787c30cf7f80b584b07 (diff) | |
download | forums-5b186c936d6d6d67b8b0551a990522fdc68e2a4c.tar forums-5b186c936d6d6d67b8b0551a990522fdc68e2a4c.tar.gz forums-5b186c936d6d6d67b8b0551a990522fdc68e2a4c.tar.bz2 forums-5b186c936d6d6d67b8b0551a990522fdc68e2a4c.tar.xz forums-5b186c936d6d6d67b8b0551a990522fdc68e2a4c.zip |
Merge branch 'prep-release-3.1.0-RC5' into develop-ascraeus
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/rc5.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/rc5.php b/phpBB/phpbb/db/migration/data/v310/rc5.php new file mode 100644 index 0000000000..5b6f70e32e --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/rc5.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 rc5 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v310\rc4', + '\phpbb\db\migration\data\v310\profilefield_field_validation_length', + '\phpbb\db\migration\data\v310\remove_acp_styles_cache', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.0-RC5')), + ); + } +} |