diff options
author | thomascube <thomas@roundcube.net> | 2007-03-01 20:40:00 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-03-01 20:40:00 +0000 |
commit | ff52bee1a2c1b3f6654c8bfe41d1a3d8630e2b55 (patch) | |
tree | f05d427a343a690662bacd0f832910cbdb8d075b /program/include/main.inc | |
parent | 87e2fddb32da8580f73c5ec0628e9eacfb4e0043 (diff) |
Solved wrong caching of message preview (#1484153, #1484236)
Diffstat (limited to 'program/include/main.inc')
-rw-r--r-- | program/include/main.inc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index 7e7f216de..b19c7f412 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -190,13 +190,6 @@ function rcmail_authenticate_session() setcookie('sessauth', rcmail_auth_hash(session_id(), $now)); } - if (!$valid) - write_log('timeouts', - "REQUEST: " . var_export($_REQUEST, true) . - "\nEXPECTED: " . rcmail_auth_hash(session_id(), $_SESSION['auth_time']) . - "\nOR LAST: " . rcmail_auth_hash(session_id(), $_SESSION['last_auth']) . - "\nSESSION: " . var_export($_SESSION, true)); - return $valid; } @@ -559,6 +552,7 @@ function rcmail_login($user, $pass, $host=NULL) $_SESSION['username'] = $user; $_SESSION['user_lang'] = $sess_user_lang; $_SESSION['password'] = encrypt_passwd($pass); + $_SESSION['login_time'] = mktime(); // force reloading complete list of subscribed mailboxes rcmail_set_imap_prop(); |