diff options
Diffstat (limited to 'framework/Web')
-rw-r--r-- | framework/Web/THttpSession.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Web/THttpSession.php b/framework/Web/THttpSession.php index b9faea74..b778f56d 100644 --- a/framework/Web/THttpSession.php +++ b/framework/Web/THttpSession.php @@ -125,7 +125,8 @@ class THttpSession extends TApplicationComponent implements IteratorAggregate,Ar if($this->_autoStart)
$this->open();
$this->_initialized=true;
- $this->getApplication()->setSession($this);
+ $this->getApplication()->setSession($this); + register_shutdown_function(array($this, "close"));
}
/**
|