We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d6f1c2 commit c3c7d26Copy full SHA for c3c7d26
public_html/lists/admin/updateLib.php
@@ -33,7 +33,7 @@ function checkForUpdate()
33
}
34
$versionString = isset($serverResponse['versionstring']) ? $serverResponse['versionstring'] : '';
35
36
- if ($version !== '' && $version !== VERSION && version_compare(VERSION, $version) && $enabledNotification) {
+ if ($version !== '' && $version !== VERSION && version_compare(VERSION, $version) < 0 && $enabledNotification) {
37
$updateMessage = s('A new version of phpList is available: %s',htmlentities($versionString));
38
} else {
39
$updateMessage = '';
0 commit comments