Changeset 1258 in ExiteCMS for trunk/includes/session_functions.php


Ignore:
Timestamp:
02/10/08 21:47:13 (4 years ago)
Author:
hverton
Message:

fixed issue with session caching, causing bizare side-effects
added an explanation to the different possible locale modes
fixed not updating the login_expire session variable upon page load_localestrings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/session_functions.php

    r1243 r1258  
    2727// make sure the session cookie times out at the same time as the session record 
    2828session_set_cookie_params($settings['session_gc_maxlifetime'], "/", "", false); 
     29 
     30// disable the default session caching. very annoying 
     31session_cache_limiter("none"); 
    2932 
    3033// start the session 
Note: See TracChangeset for help on using the changeset viewer.