Changeset 795


Ignore:
Timestamp:
Jun 9, 2023 12:10:25 AM (11 months ago)
Author:
anonymous
Message:

Update cache durations

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/1.1dev/config/boot.inc.php

    r754 r795  
    266266// The include path is set for the templates.
    267267// We split them between shared and site specific directories.
    268 $inc_lang = isset($_SESSION['_language']) ? $_SESSION['_language'] : 'en';
    269268ini_set('include_path',
    270269    ini_get('include_path') . PATH_SEPARATOR .
  • trunk/lib/CSS.inc.php

    r724 r795  
    4040        'cache_enable' => false,
    4141        'cache_css' => null, // Same as above; kept for backwards compatibility.
    42         'cache_seconds' => 86400,
     42        'cache_seconds' => 7776000, // 90 days.
    4343        'strip_whitespace' => false,
    4444        'output_compression' => false,
  • trunk/lib/JS.inc.php

    r724 r795  
    4040        'cache_enable' => false,
    4141        'cache_js' => null, // Same as above; kept for backwards compatibility.
    42         'cache_seconds' => 86400,
     42        'cache_seconds' => 7776000, // 90 days.
    4343        'strip_whitespace' => false,
    4444        'output_compression' => false,
Note: See TracChangeset for help on using the changeset viewer.