From 857a6ff808d283c2e7841ada99d335bdc128ca35 Mon Sep 17 00:00:00 2001 From: F TEMPEZ Date: Wed, 31 Jan 2024 14:36:23 +0100 Subject: [PATCH] =?UTF-8?q?Op=C3=A9rateur=20bool=C3=A9en=20nouvelle=20vers?= =?UTF-8?q?ion=20=20sans=20le=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/class/helper.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/class/helper.class.php b/core/class/helper.class.php index d3119d98..50bc756e 100644 --- a/core/class/helper.class.php +++ b/core/class/helper.class.php @@ -368,7 +368,7 @@ class helper $version = helper::getOnlineVersion($channel); $update = false; if (!empty($version)) { - $update = version_compare(common::ZWII_VERSION, $version) === -1; + $update = version_compare(common::ZWII_VERSION, $version) == -1; } return $update; }