diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-25 13:36:52 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-25 13:36:52 -0500 |
commit | 26dac64d45944dce14b33a9c82e531f01f9a623f (patch) | |
tree | 0b5a70ef95e2860f38e53c193eec6f6807972f20 | |
parent | bea1ce92a1ba11714217d2837875595bd309c26d (diff) | |
parent | 935001b7a2bb89a7429b535ec745757275ae76d6 (diff) | |
download | forums-26dac64d45944dce14b33a9c82e531f01f9a623f.tar forums-26dac64d45944dce14b33a9c82e531f01f9a623f.tar.gz forums-26dac64d45944dce14b33a9c82e531f01f9a623f.tar.bz2 forums-26dac64d45944dce14b33a9c82e531f01f9a623f.tar.xz forums-26dac64d45944dce14b33a9c82e531f01f9a623f.zip |
Merge branch 'develop-olympus' into develop
# By Oliver Schramm
# Via Nathaniel Guse (1) and Oliver Schramm (1)
* develop-olympus:
[ticket/10917] Using phpbb wrapper
[ticket/10917] Fixed notice that files are out of date when updating to an unreleased version
-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 92e94d5503..a4d614b1bf 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -201,7 +201,7 @@ class install_update extends module } // Check if the update files stored are for the latest version... - if ($this->latest_version != $this->update_info['version']['to']) + if (phpbb_version_compare($this->latest_version, $this->update_info['version']['to'], '>')) { $this->unequal_version = true; |