Skip to content

Commit 9200311

Browse files
Merge pull request #63387 from nextcloud/backport/61537/stable34
[stable34] feat: Mark 32 bits support as removed for Nextcloud Hub 27 Winter
2 parents eb5e24d + 35072e9 commit 9200311

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/settings/lib/SetupChecks/SystemIs64bit.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ public function run(): SetupResult {
4444
if ($this->is64bit()) {
4545
return SetupResult::success($this->l10n->t('64-bit'));
4646
} else {
47-
return SetupResult::warning(
48-
$this->l10n->t('It seems like you are running a 32-bit PHP version. Nextcloud needs 64-bit to run well. Please upgrade your OS and PHP to 64-bit!'),
47+
return SetupResult::error(
48+
$this->l10n->t('It seems like you are running a 32-bit PHP version. Nextcloud needs 64-bit to run well. Please upgrade your OS and PHP to 64-bit! We will no longer block improvements to performance, security and scalability that are incompatible with 32bit support going forward and we expect that Nextcloud Hub 27 Winter (Nextcloud 36) will no longer work on 32bit systems.'),
4949
$this->urlGenerator->linkToDocs('admin-system-requirements')
5050
);
5151
}

0 commit comments

Comments
 (0)