Ignore:
Timestamp:
Apr 19, 2012 2:56:52 AM (13 months ago)
Author:
alec
Message:
  • Fix incorrect cache ttl used in get_cache_engine() (#1488447), use time() where mktime() without arguments was used
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube.php

    r6093 r6101  
    487487    { 
    488488        $tmp = unslashify($this->config->get('temp_dir')); 
    489         $expire = mktime() - 172800;  // expire in 48 hours 
     489        $expire = time() - 172800;  // expire in 48 hours 
    490490 
    491491        if ($tmp && ($dir = opendir($tmp))) { 
Note: See TracChangeset for help on using the changeset viewer.