Actions
Bug #83230
closedPostUpload check returns false value to FE
Status:
Closed
Priority:
Should have
Assignee:
Category:
Install Tool
Target version:
Start date:
2017-12-05
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The PHP post_max_size and upload_max_filesize checker tests correctly if post_max_size isn't smaller then upload_max_filesize, but then returns the value of post_max_size to frontend.
So correctly setting:
post_max_size 8M
upload_max_filesize 2M
Given result: "The maximum size for file uploads is actually set to 8M"
Expected result: "The maximum size for file uploads is actually set to 2M"
Setting upload_max_filesize to higher value then post_max_size results in an error status, which is correct.
Actions