Changeset 638e345 in github
- Timestamp:
- Apr 30, 2011 1:01:59 PM (2 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 2a38001
- Parents:
- 1997a94
- File:
-
- 1 edited
-
program/include/rcube_session.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_session.php
r60a277f r638e345 164 164 165 165 // use internal data from read() for fast requests (up to 0.5 sec.) 166 if ($key == $this->key && $ts - $this->start < 0.5) {166 if ($key == $this->key && (!$this->vars || $ts - $this->start < 0.5)) { 167 167 $oldvars = $this->vars; 168 168 } else { // else read data again from DB … … 290 290 291 291 // use internal data for fast requests (up to 0.5 sec.) 292 if ($key == $this->key && $ts - $this->start < 0.5)292 if ($key == $this->key && !($this->vars || $ts - $this->start < 0.5)) 293 293 $oldvars = $this->vars; 294 294 else // else read data again
Note: See TracChangeset
for help on using the changeset viewer.
