1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/14570] Use phpbb_version_compare

PHPBB3-14570
This commit is contained in:
Matt Friedman
2016-03-29 10:01:03 -07:00
parent b8dd3ef43a
commit 39de59e65f
32 changed files with 32 additions and 32 deletions

View File

@@ -17,7 +17,7 @@ class beta2 extends \phpbb\db\migration\migration
{
public function effectively_installed()
{
return version_compare($this->config['version'], '3.1.0-b2', '>=');
return phpbb_version_compare($this->config['version'], '3.1.0-b2', '>=');
}
static public function depends_on()