mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
BUGFIX Validating $_FILES in File::loadUploaded (Original patch was applied to Upload->validate() in trunk - r73254)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.2@73279 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
c914013287
commit
33f2996ea3
@ -160,6 +160,10 @@ class File extends DataObject {
|
||||
if(!is_array($tmpFile)) user_error("File::loadUploaded() Not passed an array. Most likely, the form hasn't got the right enctype", E_USER_ERROR);
|
||||
if(!$tmpFile['size']) return;
|
||||
|
||||
if(isset($tmpFile['tmp_name']) && !is_uploaded_file($tmpFile['tmp_name'])) {
|
||||
user_error("File::loadUploaded() File is not a valid upload", E_USER_ERROR);
|
||||
return false;
|
||||
}
|
||||
|
||||
// @TODO This puts a HUGE limitation on files especially when lots
|
||||
// have been uploaded.
|
||||
|
Loading…
x
Reference in New Issue
Block a user