diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2022-11-02 10:41:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-02 10:41:43 +0100 |
commit | 3dd21ebbf8bbca642ba701ea3d66f05c931ca099 (patch) | |
tree | 4d414caca4729a5dc89c31be8ff2eaa5d22a8064 /core | |
parent | 77c6d248825bf1bda5c0bb48a8d6fc195e139bc6 (diff) | |
parent | f5ad282418d27422f77fda0e0e45797899508c1b (diff) | |
download | nextcloud-server-3dd21ebbf8bbca642ba701ea3d66f05c931ca099.tar.gz nextcloud-server-3dd21ebbf8bbca642ba701ea3d66f05c931ca099.zip |
Merge pull request #34906 from nextcloud/enh/noid/improve-64-bit-check
Diffstat (limited to 'core')
-rw-r--r-- | core/js/setupchecks.js | 2 | ||||
-rw-r--r-- | core/js/tests/specs/setupchecksSpec.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 81ed193a38b..497f1e5b332 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -427,7 +427,7 @@ messages.push({ msg: t( 'core', - '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! For further details read {linkstart}the documentation page about this ↗{linkend}.' + 'It seems like you are running a 32-bit PHP version. Nextcloud 26 and higher require 64-bit. Please upgrade your OS and PHP to 64-bit! For further details read {linkstart}the documentation page about this ↗{linkend}.' .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-system-requirements') + '">') .replace('{linkend}', '</a>'), ), diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index 3068e1e42a4..60d042102e0 100644 --- a/core/js/tests/specs/setupchecksSpec.js +++ b/core/js/tests/specs/setupchecksSpec.js @@ -1403,7 +1403,7 @@ describe('OC.SetupChecks tests', function() { async.done(function( data, s, x ){ expect(data).toEqual([{ - msg: '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! For further details read <a href="https://docs.example.org/admin-system-requirements" class="external" rel="noreferrer noopener">the documentation page about this ↗</a>.', + msg: 'It seems like you are running a 32-bit PHP version. Nextcloud 26 and higher require 64-bit. Please upgrade your OS and PHP to 64-bit! For further details read <a href="https://docs.example.org/admin-system-requirements" class="external" rel="noreferrer noopener">the documentation page about this ↗</a>.', type: OC.SetupChecks.MESSAGE_TYPE_WARNING }]); done(); |