thomascube
2011-05-02 125894d35d5d961ff34dc17134eaf21da73115b3
Fix expression

1 files modified
2 ■■■ changed files
program/include/rcube_session.php 2 ●●● patch | view | raw | blame | history
program/include/rcube_session.php
@@ -289,7 +289,7 @@
    $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);