diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2016-03-31 12:30:07 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2016-03-31 12:30:07 +0200 |
| commit | 3f5a873e4cff0fd6f9ab2dd4fad1179009abed4b (patch) | |
| tree | 66ff8469ecf1ea8ed4925d906390c77c08ef732e /phpBB/phpbb/db/migration/data/v310/rc2.php | |
| parent | 7a1cf2a2800035f5189e9260a6a6a6a28e8cb1cf (diff) | |
| parent | 39de59e65f2913f4f583e52e91c92b77a6096186 (diff) | |
| download | forums-3f5a873e4cff0fd6f9ab2dd4fad1179009abed4b.tar forums-3f5a873e4cff0fd6f9ab2dd4fad1179009abed4b.tar.gz forums-3f5a873e4cff0fd6f9ab2dd4fad1179009abed4b.tar.bz2 forums-3f5a873e4cff0fd6f9ab2dd4fad1179009abed4b.tar.xz forums-3f5a873e4cff0fd6f9ab2dd4fad1179009abed4b.zip | |
Merge pull request #4264 from VSEphpbb/ticket/14570
[ticket/14570] Add effectively installed to 3.1.x versions
Diffstat (limited to 'phpBB/phpbb/db/migration/data/v310/rc2.php')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v310/rc2.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/rc2.php b/phpBB/phpbb/db/migration/data/v310/rc2.php index e1323659da..5cd0393a13 100644 --- a/phpBB/phpbb/db/migration/data/v310/rc2.php +++ b/phpBB/phpbb/db/migration/data/v310/rc2.php @@ -15,6 +15,11 @@ namespace phpbb\db\migration\data\v310; class rc2 extends \phpbb\db\migration\migration { + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.1.0-RC2', '>='); + } + static public function depends_on() { return array( |
