diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-05-16 17:46:09 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-05-16 17:46:09 +0000 |
commit | 4b63b8ad8df01c077d918e2cbe65e0818f971d69 (patch) | |
tree | 75b61de7af926094ce3b327008f109f9a031d9e4 /system.php | |
parent | cd3b1df0db7644a4e8e779ac91584bf4ae722ace (diff) | |
download | elgg-4b63b8ad8df01c077d918e2cbe65e0818f971d69.tar.gz elgg-4b63b8ad8df01c077d918e2cbe65e0818f971d69.tar.bz2 |
added check for no images uploaded
Diffstat (limited to 'system.php')
-rw-r--r-- | system.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system.php b/system.php index ed6370149..82a705932 100644 --- a/system.php +++ b/system.php @@ -72,12 +72,12 @@ <tr> <td>Max File Upload Size</td> <td><?php echo tp_readable_size(ini_get('upload_max_filesize')); ?></td> - <td>Max size of the sum of images uploaded at once</td> + <td>Max size of an uploaded image</td> </tr> <tr> <td>Max Post Size</td> <td><?php echo tp_readable_size(ini_get('post_max_size')); ?></td> - <td>Max post size - should be larger than above</td> + <td>Max post size = sum of images + html form</td> </tr> <tr> <td>Max Input Time</td> |