From 125894d35d5d961ff34dc17134eaf21da73115b3 Mon Sep 17 00:00:00 2001 From: thomascube Date: Mon, 2 May 2011 16:05:02 +0000 Subject: Fix expression --- program/include/rcube_session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3