#104220 by ChrisKennedy: remove arbitrary half post max size restriction on maximum uploadable file size

6.x
Gábor Hojtsy 2007-10-08 13:13:13 +00:00
parent afff4edd2e
commit 194a7977f3
1 changed files with 1 additions and 2 deletions

View File

@ -968,8 +968,7 @@ function file_upload_max_size() {
if ($max_size < 0) {
$upload_max = parse_size(ini_get('upload_max_filesize'));
// sanity check- a single upload should not be more than 50% the size limit of the total post
$post_max = parse_size(ini_get('post_max_size')) / 2;
$post_max = parse_size(ini_get('post_max_size'));
$max_size = ($upload_max < $post_max) ? $upload_max : $post_max;
}
return $max_size;