diff options
author | Matt Friedman <maf675@gmail.com> | 2016-03-29 10:01:03 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-03-29 10:01:03 -0700 |
commit | 39de59e65f2913f4f583e52e91c92b77a6096186 (patch) | |
tree | 67d78f664675a611ba058f427e8a09e6affd8c61 /phpBB/phpbb/db/migration/data/v31x/v312.php | |
parent | b8dd3ef43a1f9a4674d9bced60c956cb817f42c4 (diff) | |
download | forums-39de59e65f2913f4f583e52e91c92b77a6096186.tar forums-39de59e65f2913f4f583e52e91c92b77a6096186.tar.gz forums-39de59e65f2913f4f583e52e91c92b77a6096186.tar.bz2 forums-39de59e65f2913f4f583e52e91c92b77a6096186.tar.xz forums-39de59e65f2913f4f583e52e91c92b77a6096186.zip |
[ticket/14570] Use phpbb_version_compare
PHPBB3-14570
Diffstat (limited to 'phpBB/phpbb/db/migration/data/v31x/v312.php')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v31x/v312.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v312.php b/phpBB/phpbb/db/migration/data/v31x/v312.php index abc60baad7..114c2b959b 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v312.php +++ b/phpBB/phpbb/db/migration/data/v31x/v312.php @@ -17,7 +17,7 @@ class v312 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.2', '>='); + return phpbb_version_compare($this->config['version'], '3.1.2', '>='); } static public function depends_on() |