MT#13777 align upload filesize to 64MB for csv

Change-Id: I5098e29f4e9c706c3dd45ad6cb5f6748b8dba214
changes/42/2042/2
Gerhard Jungwirth 10 years ago
parent d054035005
commit 8addf64774

@ -15,7 +15,7 @@ sub build_form_element_class { [qw/form-horizontal/] }
has_field 'upload_fees' => (
type => 'Upload',
max_size => '2000000',
max_size => '67108864', # 64MB
);
has_field 'purge_existing' => (

@ -18,7 +18,7 @@ has_field 'destination' => (
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['The number to send the fax to']
title => ['The number to send the fax to'],
},
);
@ -33,11 +33,11 @@ has_field 'data' => (
has_field 'faxfile' => (
type => 'Upload',
max_size => 67108864,
max_size => '67108864', # 64MB
label => 'or File',
element_attr => {
rel => ['tooltip'],
title => ['Supported File Types are TXT, PDF, PS, TIFF']
title => ['Supported File Types are TXT, PDF, PS, TIFF'],
},
);

@ -15,7 +15,7 @@ sub build_form_element_class { [qw/form-horizontal/] }
has_field 'upload_vouchers' => (
type => 'Upload',
max_size => '2000000',
max_size => '67108864', # 64MB
);
has_field 'purge_existing' => (

Loading…
Cancel
Save