diff options
Diffstat (limited to 'it_url.class')
-rw-r--r-- | it_url.class | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/it_url.class b/it_url.class index cc5f816..16c04b8 100644 --- a/it_url.class +++ b/it_url.class @@ -687,8 +687,8 @@ static function get_cache($p = array()) } } - # cache cleanup at night - if (date('H') >= 1 && (date('H')*3600 + date('i')*60 < $p['cleanbefore']) && (time()-@filemtime($p['cachedir'] . "/cleaned") > 80000)) + # cache cleanup preferably at night + if (time() - @filemtime($p['cachedir'] . "/cleaned") > (date('H') >= 1 && (date('H')*3600 + date('i')*60 < $p['cleanbefore'] ? 80000 : 2*80000))) { it::file_put($p['cachedir'] . "/cleaned", ""); # touch could have permission problems $maxagemin = intval($p['maxage']/60); |