diff options
author | xue <> | 2006-05-17 21:24:40 +0000 |
---|---|---|
committer | xue <> | 2006-05-17 21:24:40 +0000 |
commit | 3d437d9dcd37dc901f53ca3322ba118851e3c676 (patch) | |
tree | 076d80a286ab5b1cac4267a4155591d2a77f5e80 /framework/Web/THttpSession.php | |
parent | fc2d7f134f07a89e4f01b703ba10d54f63fe6a68 (diff) |
Merge from 3.0 branch till 1073.
Diffstat (limited to 'framework/Web/THttpSession.php')
-rw-r--r-- | framework/Web/THttpSession.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/framework/Web/THttpSession.php b/framework/Web/THttpSession.php index 13526dd1..379bc7b6 100644 --- a/framework/Web/THttpSession.php +++ b/framework/Web/THttpSession.php @@ -401,7 +401,7 @@ class THttpSession extends TApplicationComponent implements IteratorAggregate,Ar /**
* Session open handler.
- * This method should be overriden if session Storage is set as 'user'.
+ * This method should be overriden if {@link setUseCustomStorage UseCustomStorage} is set true.
* @param string session save path
* @param string session name
* @return boolean whether session is opened successfully
@@ -413,7 +413,7 @@ class THttpSession extends TApplicationComponent implements IteratorAggregate,Ar /**
* Session close handler.
- * This method should be overriden if session Storage is set as 'user'.
+ * This method should be overriden if {@link setUseCustomStorage UseCustomStorage} is set true.
* @return boolean whether session is closed successfully
*/
public function _close()
@@ -423,7 +423,7 @@ class THttpSession extends TApplicationComponent implements IteratorAggregate,Ar /**
* Session read handler.
- * This method should be overriden if session Storage is set as 'user'.
+ * This method should be overriden if {@link setUseCustomStorage UseCustomStorage} is set true.
* @param string session ID
* @return string the session data
*/
@@ -434,7 +434,7 @@ class THttpSession extends TApplicationComponent implements IteratorAggregate,Ar /**
* Session write handler.
- * This method should be overriden if session Storage is set as 'user'.
+ * This method should be overriden if {@link setUseCustomStorage UseCustomStorage} is set true.
* @param string session ID
* @param string session data
* @return boolean whether session write is successful
@@ -446,7 +446,7 @@ class THttpSession extends TApplicationComponent implements IteratorAggregate,Ar /**
* Session destroy handler.
- * This method should be overriden if session Storage is set as 'user'.
+ * This method should be overriden if {@link setUseCustomStorage UseCustomStorage} is set true.
* @param string session ID
* @return boolean whether session is destroyed successfully
*/
@@ -457,7 +457,7 @@ class THttpSession extends TApplicationComponent implements IteratorAggregate,Ar /**
* Session GC (garbage collection) handler.
- * This method should be overriden if session Storage is set as 'user'.
+ * This method should be overriden if {@link setUseCustomStorage UseCustomStorage} is set true.
* @param integer the number of seconds after which data will be seen as 'garbage' and cleaned up.
* @return boolean whether session is GCed successfully
*/
|