diff options
author | xue <> | 2005-12-28 20:17:54 +0000 |
---|---|---|
committer | xue <> | 2005-12-28 20:17:54 +0000 |
commit | e8b60312037e54c34a06d6f57d7c21946cf3cd1f (patch) | |
tree | a6f35f5d4bb921998ca306602a33fc03ba47c4b5 /framework/Web/THttpSession.php | |
parent | 930c51a6d618d487105cd46c517f36c3b1fe3b44 (diff) |
Modified the way to access application singleton.
IService and IModule interfaces are also adjusted accordingly.
Diffstat (limited to 'framework/Web/THttpSession.php')
-rw-r--r-- | framework/Web/THttpSession.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/Web/THttpSession.php b/framework/Web/THttpSession.php index 0698d4d8..d7b1acfa 100644 --- a/framework/Web/THttpSession.php +++ b/framework/Web/THttpSession.php @@ -81,16 +81,16 @@ class THttpSession extends TModule * Initializes the module.
* This method is required by IModule.
* If AutoStart is true, the session will be started.
- * @param TApplication prado application instance
+ * @param TXmlElement module configuration
*/
- public function init($application,$config)
+ public function init($config=null)
{
- parent::init($application,$config);
+ parent::init($config);
if($this->_autoStart)
session_start();
$this->_initialized=true;
- $application->setSession($this);
+ $this->getApplication()->setSession($this);
}
/**
|