mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX UploadField incorrectly setting max upload size
This commit is contained in:
parent
406307c77b
commit
dd9ade4294
@ -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));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user