aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/install/install_update.php2
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;