diff options
author | Joas Schilling <coding@schilljs.com> | 2019-02-28 11:05:28 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-03-04 12:14:22 +0100 |
commit | c6a69ba92514587814d0f03b51e1d1f026a49350 (patch) | |
tree | b7162fff445ea0595280b535b95a60b689f742dd /tests/data | |
parent | 814bf0de20b05ef44d4558d49cc3dc655da1c58d (diff) | |
download | nextcloud-server-c6a69ba92514587814d0f03b51e1d1f026a49350.tar.gz nextcloud-server-c6a69ba92514587814d0f03b51e1d1f026a49350.zip |
Remove the upload and memory setting
* Remove unneeded private method phpFileSize()
* Bump autoloader
* Remove setUploadLimit tests
* Remove integrity check hacks for upload limit
Signed-off-by: Joas Schilling <coding@schilljs.com>
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests/data')
-rw-r--r-- | tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess | 3 | ||||
-rw-r--r-- | tests/data/integritycheck/htaccessWithValidModifiedContent/.user.ini | 7 |
2 files changed, 0 insertions, 10 deletions
diff --git a/tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess b/tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess index e42d92da679..1b5eb98b7f8 100644 --- a/tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess +++ b/tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess @@ -1,8 +1,5 @@ # Start of valid file <IfModule mod_php7.c> - php_value upload_max_filesize 519M - php_value post_max_size 519M - php_value memory_limit 512M php_value mbstring.func_overload 0 php_value always_populate_raw_post_data -1 php_value default_charset 'UTF-8' diff --git a/tests/data/integritycheck/htaccessWithValidModifiedContent/.user.ini b/tests/data/integritycheck/htaccessWithValidModifiedContent/.user.ini deleted file mode 100644 index 90959b1e649..00000000000 --- a/tests/data/integritycheck/htaccessWithValidModifiedContent/.user.ini +++ /dev/null @@ -1,7 +0,0 @@ -upload_max_filesize=519M -post_max_size=519M -memory_limit=512M -mbstring.func_overload=0 -always_populate_raw_post_data=-1 -default_charset='UTF-8' -output_buffering=0 |