diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-02-22 14:23:15 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-02-22 14:23:15 +0100 |
commit | ed6077c460039ae1ca279c7a9d6d334caf1c2314 (patch) | |
tree | 8a188fc997c0f38d3c086608e42926381b46b46b | |
parent | 2c14f82b85c15a5120776579dff43584ecc429a7 (diff) |
Add comment for actions_max_age in config
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | application/config/config.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/application/config/config.php b/application/config/config.php index a8cf51610..195839c4c 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -383,6 +383,9 @@ $config['upload_max_text_size'] = 2*1024*1024; // 2MiB // 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 + +// Action keys (invitions, password resets) will be deleted after this time by +// the cron job. $config['actions_max_age'] = 60*60*24*5; // 5 days // Files smaller than this won't be deleted (even if they are old enough) |