Merge pull request #6291 from dhensby/pulls/3.4/fix-uploadfield-max-size

FIX UploadField incorrectly setting max upload size
This commit is contained in:
Daniel Hensby 2016-11-24 12:40:04 +00:00 committed by GitHub
commit 464af18346

View File

@ -220,11 +220,6 @@ class UploadField extends FileField {
$this->getValidator()->setAllowedExtensions( $this->getValidator()->setAllowedExtensions(
array_filter(Config::inst()->get('File', 'allowed_extensions')) array_filter(Config::inst()->get('File', 'allowed_extensions'))
); );
// get the lower max size
$maxUpload = File::ini2bytes(ini_get('upload_max_filesize'));
$maxPost = File::ini2bytes(ini_get('post_max_size'));
$this->getValidator()->setAllowedMaxFileSize(min($maxUpload, $maxPost));
} }
/** /**