aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-01-31 12:09:53 +0100
committerJoas Schilling <nickvergessen@gmx.de>2015-01-31 12:11:43 +0100
commit3c23242bfe8666cfa7fb3ae6b55c2190f397c773 (patch)
tree6c345f16d9947668bdc440ef34db7e1cddd132af /phpBB/phpbb
parent67478a0f94611ba642e31549b52d83f04a4c8028 (diff)
parentbe30d8251a5c0a9ffb59f415cba7e10bbe714f68 (diff)
downloadforums-3c23242bfe8666cfa7fb3ae6b55c2190f397c773.tar
forums-3c23242bfe8666cfa7fb3ae6b55c2190f397c773.tar.gz
forums-3c23242bfe8666cfa7fb3ae6b55c2190f397c773.tar.bz2
forums-3c23242bfe8666cfa7fb3ae6b55c2190f397c773.tar.xz
forums-3c23242bfe8666cfa7fb3ae6b55c2190f397c773.zip
Merge branch 'prep-release-3.1.3' into develop-ascraeus
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v31x/v313rc2.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v313rc2.php b/phpBB/phpbb/db/migration/data/v31x/v313rc2.php
new file mode 100644
index 0000000000..d832d6f502
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v31x/v313rc2.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\v31x;
+
+class v313rc2 extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v30x\release_3_0_13_pl1',
+ '\phpbb\db\migration\data\v31x\v313rc1',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.1.3-RC2')),
+ );
+ }
+}