From: Cash Costello Date: Tue, 16 Jun 2009 10:53:40 +0000 (+0000) Subject: changed max file size parsing code in upload form X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e1b554d703d6a41006009392afcfe66f64f9b769;p=lorea%2Felgg.git changed max file size parsing code in upload form --- diff --git a/views/default/tidypics/forms/upload.php b/views/default/tidypics/forms/upload.php index db162e4e9..ec33ca933 100644 --- a/views/default/tidypics/forms/upload.php +++ b/views/default/tidypics/forms/upload.php @@ -6,15 +6,9 @@ $container_guid = get_input('container_guid'); $access_id = get_entity($vars['album'])->access_id; - if (get_plugin_setting('maxfilesize','tidypics')) { - if (((int) get_plugin_setting('maxfilesize','tidypics')) < 1 || ((int) get_plugin_setting('maxfilesize','tidypics')) > 1048576) { - $maxfilesize = 10240; //if file size is less than 1KB or greater than 1GB, default to 10MB - } else { - $maxfilesize = (int) get_plugin_setting('maxfilesize','tidypics'); - } - } else { - $maxfilesize = 10240; //if the file size limit is not set, default to 10MB - } + $maxfilesize = (int) get_plugin_setting('maxfilesize','tidypics'); + if (!$maxfilesize) + $maxfilesize = 5; ?>