diff options
author | thomascube <thomas@roundcube.net> | 2007-08-10 08:51:41 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-08-10 08:51:41 +0000 |
commit | 31d9efd97d9da09605d4329457ee218cba48f82f (patch) | |
tree | 6b2ae88d0a9074f1b09aed0635057416fce854fd /program/include | |
parent | 719a257f0c8fd750a4984ed56273dc653565729e (diff) |
Simplified code + removed debug log
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/main.inc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index 4b8aa68d5..19d421441 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -234,10 +234,7 @@ function rcmail_authenticate_session() // check session filetime if (!empty($CONFIG['session_lifetime']) && isset($SESS_CHANGED) && $SESS_CHANGED + $CONFIG['session_lifetime']*60 < time()) $valid = false; - - if (!$valid) - write_log('timeouts', $_SESSION + array('SESS_CLIENT_IP' => $SESS_CLIENT_IP, 'SESS_CHANGED' => $SESS_CHANGED, 'COOKIE' => $_COOKIE)); - + return $valid; } |