The maximum size allowable will be dictated by PHP, through the .ini settings for
upload_max_filesize
post_max_size
One could retrieve these values, take the minimum of the two, and call this the "max allowable size".
Then, in the function process_upload (functions_file.php), the line:
$maxattachsize = $attachtypes["$extension"]['size'];
could be changed to use this "max allowable size" for any upload if the user is a member of one the privileged groups.
|