Script.php: increase attachment size to 3MB.

SIMPLICITY_link
Hui Lan 2020-12-22 17:42:29 +08:00
parent 09e857bbf6
commit 69355029a8
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ function checksize($file)
{ {
$result = $_FILES["$file"]['size']/(1024*1024); $result = $_FILES["$file"]['size']/(1024*1024);
if($result > 1) if($result > 3)
{ {
return FALSE; return FALSE;
} }