aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-11-23 14:23:39 +0100
committerMarc Alexander <admin@m-a-styles.de>2019-11-23 14:23:39 +0100
commit8b7e0563a56cb34bc8c01b2af2a26a1c2fdccdd5 (patch)
treee9cd01309a7f0eeaa5bb3c2884e6a44be664b5dd /phpBB/phpbb
parent3e9c2ea025a571c237d0855c4264caa913ba2b36 (diff)
parent77a15e354246a22ad8d3eed6e3fcd9f9f046c9f8 (diff)
downloadforums-8b7e0563a56cb34bc8c01b2af2a26a1c2fdccdd5.tar
forums-8b7e0563a56cb34bc8c01b2af2a26a1c2fdccdd5.tar.gz
forums-8b7e0563a56cb34bc8c01b2af2a26a1c2fdccdd5.tar.bz2
forums-8b7e0563a56cb34bc8c01b2af2a26a1c2fdccdd5.tar.xz
forums-8b7e0563a56cb34bc8c01b2af2a26a1c2fdccdd5.zip
Merge branch 'prep-release-3.3.0-b2' into 3.3.x
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v330/v330b2.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v330/v330b2.php b/phpBB/phpbb/db/migration/data/v330/v330b2.php
new file mode 100644
index 0000000000..1badc1387a
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v330/v330b2.php
@@ -0,0 +1,38 @@
+<?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\v330;
+
+class v330b2 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return version_compare($this->config['version'], '3.3.0-b2', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v330\add_display_unapproved_posts_config',
+ '\phpbb\db\migration\data\v330\forums_legend_limit',
+ '\phpbb\db\migration\data\v330\remove_email_hash',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.3.0-b2')),
+ );
+ }
+}