Skip to content

Commit 09a089a

Browse files
authored
Merge pull request #34921 from nextcloud/backport/34906/stable25
[stable25] update 64-bit check wording
2 parents d6eaaf3 + c268322 commit 09a089a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/js/setupchecks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@
427427
messages.push({
428428
msg: t(
429429
'core',
430-
'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}.'
430+
'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}.'
431431
.replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-system-requirements') + '">')
432432
.replace('{linkend}', '</a>'),
433433
),

core/js/tests/specs/setupchecksSpec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1403,7 +1403,7 @@ describe('OC.SetupChecks tests', function() {
14031403

14041404
async.done(function( data, s, x ){
14051405
expect(data).toEqual([{
1406-
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>.',
1406+
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>.',
14071407
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
14081408
}]);
14091409
done();

0 commit comments

Comments
 (0)