diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-05-16 19:33:36 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-05-16 19:33:36 +0000 |
commit | 5e1e82eb1ad6533b7f1f7560254fb629e0710f47 (patch) | |
tree | 899070c53f3136a8465890e7a7276d4710f366ae /views/default/settings/tidypics/edit.php | |
parent | 82519e3e23c5c56db420a64b7d17ca524720d1a2 (diff) | |
download | elgg-5e1e82eb1ad6533b7f1f7560254fb629e0710f47.tar.gz elgg-5e1e82eb1ad6533b7f1f7560254fb629e0710f47.tar.bz2 |
forgot to update the default max file size in settings
Diffstat (limited to 'views/default/settings/tidypics/edit.php')
-rw-r--r-- | views/default/settings/tidypics/edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/settings/tidypics/edit.php b/views/default/settings/tidypics/edit.php index ce06a2a35..f800d313f 100644 --- a/views/default/settings/tidypics/edit.php +++ b/views/default/settings/tidypics/edit.php @@ -35,7 +35,7 @@ <?php $maxfilesize = $vars['entity']->maxfilesize; - if (!$maxfilesize) $maxfilesize = (int) 10240; //set the default maximum file size to 10MB (1024KB * 10 = 10240KB = 10MB) + if (!$maxfilesize) $maxfilesize = (int) 5; //set the default maximum file size to 5MB ?> <p> |