Skip to content

Commit 5b8c2d6

Browse files
Merge pull request #49642 from nextcloud/backport/49633/stable30
[stable30] fix(setupcheck): Disable PhpMaxFileSize setupcheck for now
2 parents 1ff90dc + 4ee7105 commit 5b8c2d6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/settings/lib/AppInfo/Application.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
use OCA\Settings\SetupChecks\PhpDisabledFunctions;
5757
use OCA\Settings\SetupChecks\PhpFreetypeSupport;
5858
use OCA\Settings\SetupChecks\PhpGetEnv;
59-
use OCA\Settings\SetupChecks\PhpMaxFileSize;
6059
use OCA\Settings\SetupChecks\PhpMemoryLimit;
6160
use OCA\Settings\SetupChecks\PhpModules;
6261
use OCA\Settings\SetupChecks\PhpOpcacheSetup;
@@ -199,7 +198,7 @@ public function register(IRegistrationContext $context): void {
199198
$context->registerSetupCheck(PhpDisabledFunctions::class);
200199
$context->registerSetupCheck(PhpFreetypeSupport::class);
201200
$context->registerSetupCheck(PhpGetEnv::class);
202-
$context->registerSetupCheck(PhpMaxFileSize::class);
201+
// Temporarily disabled $context->registerSetupCheck(PhpMaxFileSize::class);
203202
$context->registerSetupCheck(PhpMemoryLimit::class);
204203
$context->registerSetupCheck(PhpModules::class);
205204
$context->registerSetupCheck(PhpOpcacheSetup::class);

0 commit comments

Comments
 (0)