diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-07-27 22:37:44 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-07-27 22:37:44 +0200 |
commit | d8584877a19ece5b5d6cd1d0ec752905ef8501e7 (patch) | |
tree | d3bbe4afeba7930c8e5a2c940f579f03b3547758 /phpBB | |
parent | 935001b7a2bb89a7429b535ec745757275ae76d6 (diff) | |
download | forums-d8584877a19ece5b5d6cd1d0ec752905ef8501e7.tar forums-d8584877a19ece5b5d6cd1d0ec752905ef8501e7.tar.gz forums-d8584877a19ece5b5d6cd1d0ec752905ef8501e7.tar.bz2 forums-d8584877a19ece5b5d6cd1d0ec752905ef8501e7.tar.xz forums-d8584877a19ece5b5d6cd1d0ec752905ef8501e7.zip |
[ticket/10917] Revert use of phpbb wrapper
PHPBB3-10917
Diffstat (limited to 'phpBB')
-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 9ac17e7579..e8fcabfc2d 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 (phpbb_version_compare($this->latest_version, $this->update_info['version']['to'], '>')) + if (version_compare(strtolower($this->latest_version), strtolower($this->update_info['version']['to']), '>')) { $this->unequal_version = true; |