diff --git a/index.php b/index.php index 4c00611f..0251c003 100644 --- a/index.php +++ b/index.php @@ -166,11 +166,6 @@ public function checkForUpdate() { $versionString = isset($response['versionstring']) ? $response['versionstring'] : ''; if ($version !== '' && $version !== $this->currentVersion) { - if (PHP_INT_SIZE < 8 && version_compare($version, '26.0.0.0', '>=')) { - $this->updateAvailable = false; - $updateText = '
You are running a 32-bit system. Nextcloud 26 supports 64-bit only, therefore an update cannot be offered. Please switch to a 64-bit system first.'; - return $updateText; - } $this->updateAvailable = true; $releaseChannel = $this->getCurrentReleaseChannel(); $updateText = 'Update to ' . htmlentities($versionString) . ' available. (channel: "' . htmlentities($releaseChannel) . '")
Following file will be downloaded automatically: ' . $response['url'] . ''; diff --git a/lib/Updater.php b/lib/Updater.php index 82083750..59614b6c 100644 --- a/lib/Updater.php +++ b/lib/Updater.php @@ -137,11 +137,6 @@ public function checkForUpdate() { $versionString = isset($response['versionstring']) ? $response['versionstring'] : ''; if ($version !== '' && $version !== $this->currentVersion) { - if (PHP_INT_SIZE < 8 && version_compare($version, '26.0.0.0', '>=')) { - $this->updateAvailable = false; - $updateText = '
You are running a 32-bit system. Nextcloud 26 supports 64-bit only, therefore an update cannot be offered. Please switch to a 64-bit system first.'; - return $updateText; - } $this->updateAvailable = true; $releaseChannel = $this->getCurrentReleaseChannel(); $updateText = 'Update to ' . htmlentities($versionString) . ' available. (channel: "' . htmlentities($releaseChannel) . '")
Following file will be downloaded automatically: ' . $response['url'] . ''; diff --git a/updater.phar b/updater.phar index 027d13f8..002684e4 100755 Binary files a/updater.phar and b/updater.phar differ