]> source.dussan.org Git - nextcloud-server.git/commitdiff
Revert "update 64-bit check wording" 36587/head
authorCôme Chilliet <come.chilliet@nextcloud.com>
Tue, 7 Feb 2023 13:30:51 +0000 (14:30 +0100)
committerCôme Chilliet <come.chilliet@nextcloud.com>
Tue, 7 Feb 2023 14:02:54 +0000 (15:02 +0100)
This reverts commit f5ad282418d27422f77fda0e0e45797899508c1b.

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
core/js/setupchecks.js
core/js/tests/specs/setupchecksSpec.js

index 67f8d70bd31ab409db5111fee454a4843de2f9c1..73896f9fc915696dcac851b3c305e315f3487e95 100644 (file)
                                                messages.push({
                                                        msg: t(
                                                                'core',
-                                                               '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.'
+                                                               '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.'
                                                                .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-system-requirements') + '">')
                                                                .replace('{linkend}', '</a>'),
                                                        ),
index 6df1659d7d3f13f98a9a5cb014ff477280336e6f..4532ac457b69c05741e2a3aba570b009d5a649d9 100644 (file)
@@ -1234,7 +1234,7 @@ describe('OC.SetupChecks tests', function() {
                        });
                });
 
-               
+
                it('should return an error if imagick is not enabled', function(done) {
                        var async = OC.SetupChecks.checkSetup();
 
@@ -1293,7 +1293,7 @@ describe('OC.SetupChecks tests', function() {
                        });
                });
 
-               
+
                it('should return an error if gmp or bcmath are not enabled', function(done) {
                        var async = OC.SetupChecks.checkSetup();
 
@@ -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 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.',
+                                       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.',
                                        type: OC.SetupChecks.MESSAGE_TYPE_WARNING
                                }]);
                                done();