diff options
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 < ?', |