summaryrefslogtreecommitdiff
path: root/framework/Web/TCacheHttpSession.php
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-06-17 11:23:36 +0000
committerctrlaltca@gmail.com <>2011-06-17 11:23:36 +0000
commitcb16cd741d48a5fcc5bfd093913a97a5a3c7476b (patch)
tree876e03a6515ef7691fc88412f9044ee180769e16 /framework/Web/TCacheHttpSession.php
parentc6a6b4f6d8df609936895c67bc1e261775225bf7 (diff)
fixed missing timeout on TCacheHttpSession - reported on the forum by FragMaster B
Diffstat (limited to 'framework/Web/TCacheHttpSession.php')
-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());
}
/**