diff options
author | Matt Friedman <maf675@gmail.com> | 2016-03-29 09:54:22 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-03-29 09:54:22 -0700 |
commit | b8dd3ef43a1f9a4674d9bced60c956cb817f42c4 (patch) | |
tree | 5c2e1c41c6d8815e47f6612524c7be05dad565a9 /phpBB/phpbb/db/migration/data/v310/alpha3.php | |
parent | fac6e5206f5c2895fcb2fa4ab7f9f76be5d49de4 (diff) | |
download | forums-b8dd3ef43a1f9a4674d9bced60c956cb817f42c4.tar forums-b8dd3ef43a1f9a4674d9bced60c956cb817f42c4.tar.gz forums-b8dd3ef43a1f9a4674d9bced60c956cb817f42c4.tar.bz2 forums-b8dd3ef43a1f9a4674d9bced60c956cb817f42c4.tar.xz forums-b8dd3ef43a1f9a4674d9bced60c956cb817f42c4.zip |
[ticket/14570] Add effectively installed to 3.1.x versions
PHPBB3-14570
Diffstat (limited to 'phpBB/phpbb/db/migration/data/v310/alpha3.php')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/alpha3.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/alpha3.php b/phpBB/phpbb/db/migration/data/v310/alpha3.php index 574d19d2f4..3501fab6e8 100644 --- a/phpBB/phpbb/db/migration/data/v310/alpha3.php +++ b/phpBB/phpbb/db/migration/data/v310/alpha3.php @@ -15,6 +15,11 @@ namespace phpbb\db\migration\data\v310; class alpha3 extends \phpbb\db\migration\migration { + public function effectively_installed() + { + return version_compare($this->config['version'], '3.1.0-a3', '>='); + } + static public function depends_on() { return array( |