From 4268a0d955f11bf7b0245c40a71cd1f7abc4567f Mon Sep 17 00:00:00 2001 From: avl Date: Tue, 17 Nov 2009 20:21:19 +0200 Subject: [PATCH] max upload 20Mb default --- ipf/form/field/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipf/form/field/file.php b/ipf/form/field/file.php index 45bfbea..8245614 100644 --- a/ipf/form/field/file.php +++ b/ipf/form/field/file.php @@ -6,7 +6,7 @@ class IPF_Form_Field_File extends IPF_Form_Field public $move_function = 'IPF_Form_Field_moveToUploadFolder'; public $remove_function = 'IPF_Form_Field_removeFile'; public $rename_function = 'IPF_Form_Field_renameFile'; - public $max_size = 8388608; // 8MB + public $max_size = 20971520; // 20MB public $move_function_params = array(); function clean($value) -- 2.49.0