summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_session_db.php
diff options
context:
space:
mode:
authorThomas Bruederli <bruederli@kolabsys.com>2015-03-09 17:16:39 +0100
committerThomas Bruederli <bruederli@kolabsys.com>2015-03-09 17:17:04 +0100
commit87ff88d55003a7af755d290ae06173c4d73cc133 (patch)
tree740333d1cf2e85c3033b67b9710166982c30b087 /program/lib/Roundcube/rcube_session_db.php
parentaafc050f550eec7557d9e66ee90cc8bd7b5536da (diff)
Fix session garbage collector handler registration after refactoring
Diffstat (limited to 'program/lib/Roundcube/rcube_session_db.php')
-rw-r--r--program/lib/Roundcube/rcube_session_db.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/program/lib/Roundcube/rcube_session_db.php b/program/lib/Roundcube/rcube_session_db.php
index 78138d1eb..4d94f43ff 100644
--- a/program/lib/Roundcube/rcube_session_db.php
+++ b/program/lib/Roundcube/rcube_session_db.php
@@ -168,6 +168,7 @@ class rcube_session_db extends rcube_session
// just clean all old sessions when this GC is called
$this->db->query("DELETE FROM " . $this->db->table_name('session')
. " WHERE changed < " . $this->db->now(-$this->gc_enabled));
+ $this->log("Session GC (DB): remove records < " . date('Y-m-d H:i:s', time() - $this->gc_enabled) . '; rows = ' . intval($this->db->affected_rows()));
}
} \ No newline at end of file