You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
Minor issue in DropZone.php #29: $intMaxSize, which is supposed to represent the maximum upload size in MiB, is calculated wrong. Instead of dividing the value returned by $this->getMaximumUploadSize() (the maximum upload size in bytes) by 1048576, it is divided by 1024000.
Minor issue in DropZone.php #29:
$intMaxSize
, which is supposed to represent the maximum upload size in MiB, is calculated wrong. Instead of dividing the value returned by$this->getMaximumUploadSize()
(the maximum upload size in bytes) by 1048576, it is divided by 1024000.FileUpload.php::getMaximumUploadSize() calculates the maximum upload size in bytes in the correct way.
The text was updated successfully, but these errors were encountered: