diff options
author | xue <> | 2006-11-26 14:53:30 +0000 |
---|---|---|
committer | xue <> | 2006-11-26 14:53:30 +0000 |
commit | 78bf7247e37a3bc15cbc604c5b2255de2f65c8f8 (patch) | |
tree | 3791229d8da9551002fb33ab099c327bfbeec05f /framework | |
parent | ac4ff394ca872f73fdb303f41edee09d12f962ec (diff) |
Fixed the bug that global state was not saved when redirect() is invoked
Diffstat (limited to 'framework')
-rw-r--r-- | framework/TApplication.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/framework/TApplication.php b/framework/TApplication.php index 4091ceb8..ba3d3551 100644 --- a/framework/TApplication.php +++ b/framework/TApplication.php @@ -436,9 +436,11 @@ class TApplication extends TComponent */ protected function saveGlobals() { - if(!$this->_stateChanged) - return; - $this->getApplicationStatePersister()->save($this->_globals); + if($this->_stateChanged) + { + $this->_stateChanged=false; + $this->getApplicationStatePersister()->save($this->_globals); + } } /** @@ -1034,6 +1036,7 @@ class TApplication extends TComponent */ public function onEndRequest() { + $this->saveGlobals(); // save global state $this->raiseEvent('OnEndRequest',$this,null); } } |