diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2023-02-07 17:50:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 17:50:40 +0100 |
commit | 6077003899de70c6a755b73b370f45766142090c (patch) | |
tree | 4c43752ff72d5379d516c9ed2abcfa10f432d7f7 | |
parent | 82498bc50f176c84bbf62f02b3fc843daef3e844 (diff) | |
parent | e58670098221f423875f8f90441c77fad39ec27e (diff) | |
download | nextcloud-server-6077003899de70c6a755b73b370f45766142090c.tar.gz nextcloud-server-6077003899de70c6a755b73b370f45766142090c.zip |
Merge pull request #36588 from nextcloud/revert/34908
Revert #34908 to allow 32bit setups to upgrade to 26
-rw-r--r-- | lib/private/Updater.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/private/Updater.php b/lib/private/Updater.php index 09516674e9b..45a5b4c2160 100644 --- a/lib/private/Updater.php +++ b/lib/private/Updater.php @@ -137,9 +137,6 @@ class Updater extends BasicEmitter { $success = true; try { - if (PHP_INT_SIZE < 8 && version_compare($currentVersion, '26.0.0.0', '>=')) { - throw new HintException('You are running a 32-bit PHP version. Cannot upgrade to Nextcloud 26 and higher. Please switch to 64-bit PHP.'); - } $this->doUpgrade($currentVersion, $installedVersion); } catch (HintException $exception) { $this->log->error($exception->getMessage(), [ |