diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-02 16:05:02 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-02 16:05:02 +0000 |
| commit | 0a775eb6b1d4a7972a8414c36033b80bd2e0bac6 (patch) | |
| tree | d8da81a2aea58c177aa359670b6891b54d37ac87 /roundcubemail/program/include | |
| parent | c543ab54e8c7a53a2db03b510a90df9dce4fadcf (diff) | |
Fix expression
git-svn-id: https://svn.roundcube.net/trunk@4721 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcube_session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_session.php b/roundcubemail/program/include/rcube_session.php index eca8450af..d3da36f57 100644 --- a/roundcubemail/program/include/rcube_session.php +++ b/roundcubemail/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); |
