aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2024-12-04 09:01:36 +0100
committerGitHub <noreply@github.com>2024-12-04 09:01:36 +0100
commit3027bb51afb6073058116fd185f59aa8e5d5e838 (patch)
tree5ce52582976bad467149c5343322261f0b09ad57 /apps
parentd97d1bd9d023e5b792512ad7ceba1321f0ab3d7b (diff)
parent1cbfe552717c472d53be941305cfe7b5c62ea229 (diff)
downloadnextcloud-server-3027bb51afb6073058116fd185f59aa8e5d5e838.tar.gz
nextcloud-server-3027bb51afb6073058116fd185f59aa8e5d5e838.zip
Merge pull request #49633 from nextcloud/bugfix/noid/fix-max-request-values
fix(setupcheck): Disable PhpMaxFileSize setupcheck for now
Diffstat (limited to 'apps')
-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 124915efe7f..2841b181d1a 100644
--- a/apps/settings/lib/AppInfo/Application.php
+++ b/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);