summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-04-27 08:34:16 +0000
committerthomascube <thomas@roundcube.net>2011-04-27 08:34:16 +0000
commit60a277f1ce9026ded054b8c3792e6175f2689d4a (patch)
treeb4f56efebc76b7e7973df461179df733f702251a /program
parente54f4b25e2b39ed2adffaec18273fbe8e9508c11 (diff)
Fix callback reference after rename
Diffstat (limited to 'program')
-rw-r--r--program/include/rcube_session.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/program/include/rcube_session.php b/program/include/rcube_session.php
index 3f1e1ccd2..9f636b0d2 100644
--- a/program/include/rcube_session.php
+++ b/program/include/rcube_session.php
@@ -77,7 +77,7 @@ class rcube_session
array($this, 'mc_read'),
array($this, 'mc_write'),
array($this, 'mc_destroy'),
- array($this, 'rcube_gc'));
+ array($this, 'gc'));
}
else {
raise_error(array('code' => 604, 'type' => 'db',
@@ -190,11 +190,13 @@ class rcube_session
$key, base64_encode($vars), (string)$this->ip);
}
- $this->unsets = array();
return true;
}
+ /**
+ * Merge vars with old vars and apply unsets
+ */
private function _fixvars($vars, $oldvars)
{
$ts = microtime(true);