diff options
author | Joas Schilling <coding@schilljs.com> | 2024-12-03 21:19:45 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-12-04 08:03:01 +0000 |
commit | 193e2317c0247f62eac801c5c73e1d61c5669177 (patch) | |
tree | 0eee28cf0eb66709c6489532693773eede80b42a | |
parent | 62778f09b714ed4fb95e6e168dd8a3ec94aa2814 (diff) | |
download | nextcloud-server-193e2317c0247f62eac801c5c73e1d61c5669177.tar.gz nextcloud-server-193e2317c0247f62eac801c5c73e1d61c5669177.zip |
fix(setupcheck): Disable PhpMaxFileSize setupcheck for now
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | apps/settings/lib/AppInfo/Application.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/settings/lib/AppInfo/Application.php b/apps/settings/lib/AppInfo/Application.php index 9a1f11ae9df..cca0f700dbd 100644 --- a/apps/settings/lib/AppInfo/Application.php +++ b/apps/settings/lib/AppInfo/Application.php @@ -75,7 +75,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; @@ -201,7 +200,7 @@ class Application extends App implements IBootstrap { $context->registerSetupCheck(PhpDisabledFunctions::class); $context->registerSetupCheck(PhpFreetypeSupport::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); |