diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-07-11 20:43:57 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-07-11 20:43:57 +0200 |
commit | 00596f828d9e964ed008020ea104e96e77824578 (patch) | |
tree | ba693233b14546054fd35a1d9a4e97812836b46a /system/application/controllers | |
parent | fb01797274be73ac10124b2f728f7092307e6c37 (diff) |
don't delete if max age is 0
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'system/application/controllers')
-rw-r--r-- | system/application/controllers/file.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/application/controllers/file.php b/system/application/controllers/file.php index a07debc40..67f7c0b2e 100644 --- a/system/application/controllers/file.php +++ b/system/application/controllers/file.php @@ -130,6 +130,8 @@ class File extends Controller { function cron() { + if ($this->config->item('upload_max_age') == 0) return; + $oldest_time = (time()-$this->config->item('upload_max_age')); $small_upload_size = $this->config->item('small_upload_size'); $query = $this->db->query('SELECT hash, id FROM files WHERE date < ?', |