aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-12-12 15:17:26 +0100
committerJoas Schilling <nickvergessen@gmx.de>2015-12-12 15:17:26 +0100
commitc5a7643b72d93c349b83804034aacced4869c6e3 (patch)
treec2d4180507f3a63f7a6b00765ef572aa960936ca /phpBB/phpbb
parent901785bc5ee46634fcbbb839b95932f13c80253a (diff)
parent099a1b5f7535b0bef786b241e967bd71e4d91dbf (diff)
downloadforums-c5a7643b72d93c349b83804034aacced4869c6e3.tar
forums-c5a7643b72d93c349b83804034aacced4869c6e3.tar.gz
forums-c5a7643b72d93c349b83804034aacced4869c6e3.tar.bz2
forums-c5a7643b72d93c349b83804034aacced4869c6e3.tar.xz
forums-c5a7643b72d93c349b83804034aacced4869c6e3.zip
Merge branch 'prep-release-3.1.7' into 3.1.x
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v31x/v317rc1.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v317rc1.php b/phpBB/phpbb/db/migration/data/v31x/v317rc1.php
new file mode 100644
index 0000000000..fa24819094
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v31x/v317rc1.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 v317rc1 extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v31x\m_pm_report',
+ '\phpbb\db\migration\data\v31x\v316',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.1.7-RC1')),
+ );
+ }
+}