summaryrefslogtreecommitdiff
path: root/framework/Web
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-06-17 11:24:06 +0000
committerctrlaltca@gmail.com <>2011-06-17 11:24:06 +0000
commit8d257986af10493ae6ddbab5e304e3503c8bc420 (patch)
treeff9c5aa7fd2bba2a368e97eb500e5a0c70d57e08 /framework/Web
parent1b51366edf7d15947bcf2b2b1d5d160ef170b4b5 (diff)
fixed missing timeout on TCacheHttpSession - reported on the forum by FragMaster B - branch/3.1
Diffstat (limited to 'framework/Web')
-rw-r--r--framework/Web/TCacheHttpSession.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/TCacheHttpSession.php b/framework/Web/TCacheHttpSession.php
index daa94122..af315321 100644
--- a/framework/Web/TCacheHttpSession.php
+++ b/framework/Web/TCacheHttpSession.php
@@ -108,7 +108,7 @@ class TCacheHttpSession extends THttpSession
*/
public function _write($id,$data)
{
- return $this->_cache->set($this->calculateKey($id),$data);
+ return $this->_cache->set($this->calculateKey($id),$data,$this->getTimeout());
}
/**