Skip to content

Commit d4ed1a1

Browse files
committed
Revert "update 64-bit check wording"
This reverts commit f5ad282. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
1 parent 4e969ef commit d4ed1a1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core/js/setupchecks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@
421421
messages.push({
422422
msg: t(
423423
'core',
424-
'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 ↗{linkend} about this.'
424+
'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 ↗{linkend} about this.'
425425
.replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-system-requirements') + '">')
426426
.replace('{linkend}', '</a>'),
427427
),

core/js/tests/specs/setupchecksSpec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ describe('OC.SetupChecks tests', function() {
12341234
});
12351235
});
12361236

1237-
1237+
12381238
it('should return an error if imagick is not enabled', function(done) {
12391239
var async = OC.SetupChecks.checkSetup();
12401240

@@ -1293,7 +1293,7 @@ describe('OC.SetupChecks tests', function() {
12931293
});
12941294
});
12951295

1296-
1296+
12971297
it('should return an error if gmp or bcmath are not enabled', function(done) {
12981298
var async = OC.SetupChecks.checkSetup();
12991299

@@ -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 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 ↗</a> about this.',
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 ↗</a> about this.',
14071407
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
14081408
}]);
14091409
done();

0 commit comments

Comments
 (0)