fix(setupcheck): Disable PhpMaxFileSize setupcheck for now

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/49633/head
Joas Schilling 1 year ago
parent 5ee4c9effa
commit 1cbfe55271
No known key found for this signature in database
GPG Key ID: F72FA5B49FFA96B0
  1. 3
      apps/settings/lib/AppInfo/Application.php

@ -58,7 +58,6 @@ use OCA\Settings\SetupChecks\PhpDefaultCharset;
use OCA\Settings\SetupChecks\PhpDisabledFunctions;
use OCA\Settings\SetupChecks\PhpFreetypeSupport;
use OCA\Settings\SetupChecks\PhpGetEnv;
use OCA\Settings\SetupChecks\PhpMaxFileSize;
use OCA\Settings\SetupChecks\PhpMemoryLimit;
use OCA\Settings\SetupChecks\PhpModules;
use OCA\Settings\SetupChecks\PhpOpcacheSetup;
@ -204,7 +203,7 @@ class Application extends App implements IBootstrap {
$context->registerSetupCheck(PhpFreetypeSupport::class);
$context->registerSetupCheck(PhpApcuConfig::class);
$context->registerSetupCheck(PhpGetEnv::class);
$context->registerSetupCheck(PhpMaxFileSize::class);
// Temporarily disabled $context->registerSetupCheck(PhpMaxFileSize::class);
$context->registerSetupCheck(PhpMemoryLimit::class);
$context->registerSetupCheck(PhpModules::class);
$context->registerSetupCheck(PhpOpcacheSetup::class);

Loading…
Cancel
Save