diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-02-22 13:57:41 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-02-22 13:57:41 +0100 |
commit | 85ef7ab4e36df518a7cae07dccb14d64c8668573 (patch) | |
tree | 1fc80d7c2ea7c60fc26ddc151ca0fc0d76c2847b /application/config/config.php | |
parent | 45dc72c54b858a565e5b1a434594f3acc15843bc (diff) |
Fix upload_max_age comment
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/config/config.php')
-rw-r--r-- | application/config/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/config/config.php b/application/config/config.php index 16f5af4bb..a8cf51610 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -380,7 +380,7 @@ $config['upload_max_size'] = 256*1024*1024; // 256MiB // even if requested to be highlit. $config['upload_max_text_size'] = 2*1024*1024; // 2MiB -// Files older than this will be deleted by the cron job. +// Files older than this will be deleted by the cron job or when accessed. // 0 disables deletion. $config['upload_max_age'] = 60*60*24*5; // 5 days $config['actions_max_age'] = 60*60*24*5; // 5 days |