diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-07-24 19:08:49 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-07-24 19:08:49 +0200 |
commit | e80503696350d7410e82e63e9d108d65e3c35696 (patch) | |
tree | 0f4ed4872e84173871c47910266dd2119127e1b2 /phpBB/install/install_update.php | |
parent | 5af63a7860678ac55f84201cf7dbbdf82dcdc8e8 (diff) | |
download | forums-e80503696350d7410e82e63e9d108d65e3c35696.tar forums-e80503696350d7410e82e63e9d108d65e3c35696.tar.gz forums-e80503696350d7410e82e63e9d108d65e3c35696.tar.bz2 forums-e80503696350d7410e82e63e9d108d65e3c35696.tar.xz forums-e80503696350d7410e82e63e9d108d65e3c35696.zip |
[ticket/10917] Using phpbb wrapper
PHPBB3-10917
Diffstat (limited to 'phpBB/install/install_update.php')
-rw-r--r-- | phpBB/install/install_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php index 5393040061..5419e3edf1 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -204,7 +204,7 @@ class install_update extends module } // Check if the update files stored are for the latest version... - if (version_compare(strtolower($this->latest_version), strtolower($this->update_info['version']['to']), '>')) + if (phpbb_version_compare($this->latest_version, $this->update_info['version']['to'], '>')) { $this->unequal_version = true; |