diff options
author | thomascube <thomas@roundcube.net> | 2011-05-02 16:05:02 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-05-02 16:05:02 +0000 |
commit | 125894d35d5d961ff34dc17134eaf21da73115b3 (patch) | |
tree | 944d9b508b924eebf4ca9e79bdc0b6e437f6e0fd /program | |
parent | 90550b94790f74df455bfc34c5277c715c8d5d1a (diff) |
Fix expression
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_session.php b/program/include/rcube_session.php index eca8450af..d3da36f57 100644 --- a/program/include/rcube_session.php +++ b/program/include/rcube_session.php @@ -289,7 +289,7 @@ class rcube_session $ts = microtime(true); // use internal data for fast requests (up to 0.5 sec.) - if ($key == $this->key && !($this->vars || $ts - $this->start < 0.5)) + if ($key == $this->key && (!$this->vars || $ts - $this->start < 0.5)) $oldvars = $this->vars; else // else read data again $oldvars = $this->mc_read($key); |