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 | |
| 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')
18 files changed, 18 insertions, 18 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v311.php b/phpBB/phpbb/db/migration/data/v31x/v311.php index 6478335b6f..b9d6ed3053 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v311.php +++ b/phpBB/phpbb/db/migration/data/v31x/v311.php @@ -17,7 +17,7 @@ class v311 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.1', '>='); + return phpbb_version_compare($this->config['version'], '3.1.1', '>='); } static public function depends_on() 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() diff --git a/phpBB/phpbb/db/migration/data/v31x/v312rc1.php b/phpBB/phpbb/db/migration/data/v31x/v312rc1.php index 8cf4a9693a..e2408d432b 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v312rc1.php +++ b/phpBB/phpbb/db/migration/data/v31x/v312rc1.php @@ -17,7 +17,7 @@ class v312rc1 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.2-RC1', '>='); + return phpbb_version_compare($this->config['version'], '3.1.2-RC1', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v313.php b/phpBB/phpbb/db/migration/data/v31x/v313.php index c74d37de0e..b86788da16 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v313.php +++ b/phpBB/phpbb/db/migration/data/v31x/v313.php @@ -17,7 +17,7 @@ class v313 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.3', '>='); + return phpbb_version_compare($this->config['version'], '3.1.3', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v313rc1.php b/phpBB/phpbb/db/migration/data/v31x/v313rc1.php index 9323a6e319..b1dcc03364 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v313rc1.php +++ b/phpBB/phpbb/db/migration/data/v31x/v313rc1.php @@ -17,7 +17,7 @@ class v313rc1 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.3-RC1', '>='); + return phpbb_version_compare($this->config['version'], '3.1.3-RC1', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v313rc2.php b/phpBB/phpbb/db/migration/data/v31x/v313rc2.php index 977021d07b..b701dca5ed 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v313rc2.php +++ b/phpBB/phpbb/db/migration/data/v31x/v313rc2.php @@ -17,7 +17,7 @@ class v313rc2 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.3-RC2', '>='); + return phpbb_version_compare($this->config['version'], '3.1.3-RC2', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v314.php b/phpBB/phpbb/db/migration/data/v31x/v314.php index ec6564894c..82dbbf29c9 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v314.php +++ b/phpBB/phpbb/db/migration/data/v31x/v314.php @@ -17,7 +17,7 @@ class v314 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.4', '>='); + return phpbb_version_compare($this->config['version'], '3.1.4', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v314rc1.php b/phpBB/phpbb/db/migration/data/v31x/v314rc1.php index 28c1946bfd..e7baf0c2ce 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v314rc1.php +++ b/phpBB/phpbb/db/migration/data/v31x/v314rc1.php @@ -17,7 +17,7 @@ class v314rc1 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.4-RC1', '>='); + return phpbb_version_compare($this->config['version'], '3.1.4-RC1', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v314rc2.php b/phpBB/phpbb/db/migration/data/v31x/v314rc2.php index 8869ee7012..3fc5bf2ad5 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v314rc2.php +++ b/phpBB/phpbb/db/migration/data/v31x/v314rc2.php @@ -17,7 +17,7 @@ class v314rc2 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.4-RC2', '>='); + return phpbb_version_compare($this->config['version'], '3.1.4-RC2', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v315.php b/phpBB/phpbb/db/migration/data/v31x/v315.php index 664746984e..d5eacf8dd3 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v315.php +++ b/phpBB/phpbb/db/migration/data/v31x/v315.php @@ -17,7 +17,7 @@ class v315 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.5', '>='); + return phpbb_version_compare($this->config['version'], '3.1.5', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v315rc1.php b/phpBB/phpbb/db/migration/data/v31x/v315rc1.php index b163d4ec89..a58b6a0f2a 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v315rc1.php +++ b/phpBB/phpbb/db/migration/data/v31x/v315rc1.php @@ -17,7 +17,7 @@ class v315rc1 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.5-RC1', '>='); + return phpbb_version_compare($this->config['version'], '3.1.5-RC1', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v316.php b/phpBB/phpbb/db/migration/data/v31x/v316.php index 548eb732e8..b3e0060ced 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v316.php +++ b/phpBB/phpbb/db/migration/data/v31x/v316.php @@ -17,7 +17,7 @@ class v316 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.6', '>='); + return phpbb_version_compare($this->config['version'], '3.1.6', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v316rc1.php b/phpBB/phpbb/db/migration/data/v31x/v316rc1.php index d9584f6eea..6badfb68d4 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v316rc1.php +++ b/phpBB/phpbb/db/migration/data/v31x/v316rc1.php @@ -17,7 +17,7 @@ class v316rc1 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.6-RC1', '>='); + return phpbb_version_compare($this->config['version'], '3.1.6-RC1', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v317.php b/phpBB/phpbb/db/migration/data/v31x/v317.php index b35bf5655e..d95be06ba6 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v317.php +++ b/phpBB/phpbb/db/migration/data/v31x/v317.php @@ -17,7 +17,7 @@ class v317 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.7', '>='); + return phpbb_version_compare($this->config['version'], '3.1.7', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v317pl1.php b/phpBB/phpbb/db/migration/data/v31x/v317pl1.php index 02d4f69cb9..1cb39b03f0 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v317pl1.php +++ b/phpBB/phpbb/db/migration/data/v31x/v317pl1.php @@ -17,7 +17,7 @@ class v317pl1 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.7-pl1', '>='); + return phpbb_version_compare($this->config['version'], '3.1.7-pl1', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v317rc1.php b/phpBB/phpbb/db/migration/data/v31x/v317rc1.php index 6c667a5fb4..77759daa66 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v317rc1.php +++ b/phpBB/phpbb/db/migration/data/v31x/v317rc1.php @@ -17,7 +17,7 @@ class v317rc1 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.7-RC1', '>='); + return phpbb_version_compare($this->config['version'], '3.1.7-RC1', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v318.php b/phpBB/phpbb/db/migration/data/v31x/v318.php index fcc619299d..7663529d3a 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v318.php +++ b/phpBB/phpbb/db/migration/data/v31x/v318.php @@ -17,7 +17,7 @@ class v318 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.8', '>='); + return phpbb_version_compare($this->config['version'], '3.1.8', '>='); } static public function depends_on() diff --git a/phpBB/phpbb/db/migration/data/v31x/v318rc1.php b/phpBB/phpbb/db/migration/data/v31x/v318rc1.php index 36d4f2a705..2cab5c96d4 100644 --- a/phpBB/phpbb/db/migration/data/v31x/v318rc1.php +++ b/phpBB/phpbb/db/migration/data/v31x/v318rc1.php @@ -17,7 +17,7 @@ class v318rc1 extends \phpbb\db\migration\migration { public function effectively_installed() { - return version_compare($this->config['version'], '3.1.8-RC1', '>='); + return phpbb_version_compare($this->config['version'], '3.1.8-RC1', '>='); } static public function depends_on() |
