aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2024-12-04 09:50:39 +0100
committerGitHub <noreply@github.com>2024-12-04 09:50:39 +0100
commit5b8c2d62f1017021c8ef23ba06a0bf15724fb247 (patch)
tree12a35e8a6655362683609cbba5db4b119f1f5583
parent1ff90dc3dad5499b98dbc774f983e6d00970daf1 (diff)
parent4ee7105f1cf270cdafab64c01afea6bee6fb4da6 (diff)
downloadnextcloud-server-5b8c2d62f1017021c8ef23ba06a0bf15724fb247.tar.gz
nextcloud-server-5b8c2d62f1017021c8ef23ba06a0bf15724fb247.zip
Merge pull request #49642 from nextcloud/backport/49633/stable30
[stable30] fix(setupcheck): Disable PhpMaxFileSize setupcheck for now
-rw-r--r--apps/settings/lib/AppInfo/Application.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/settings/lib/AppInfo/Application.php b/apps/settings/lib/AppInfo/Application.php
index 994e23d5df4..59c0de053bf 100644
--- a/apps/settings/lib/AppInfo/Application.php
+++ b/apps/settings/lib/AppInfo/Application.php
@@ -56,7 +56,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;
@@ -199,7 +198,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);