From 69355029a8f2d059e8f981e2ceee3baafa17a38b Mon Sep 17 00:00:00 2001 From: Hui Lan Date: Tue, 22 Dec 2020 17:42:29 +0800 Subject: [PATCH] Script.php: increase attachment size to 3MB. --- Script.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Script.php b/Script.php index cc9fa3b..b00e8d5 100644 --- a/Script.php +++ b/Script.php @@ -528,7 +528,7 @@ function checksize($file) { $result = $_FILES["$file"]['size']/(1024*1024); - if($result > 1) + if($result > 3) { return FALSE; }