summaryrefslogtreecommitdiff
path: root/framework/Web/THttpSession.php
diff options
context:
space:
mode:
authorChristophe.Boulain <>2010-02-22 08:10:30 +0000
committerChristophe.Boulain <>2010-02-22 08:10:30 +0000
commitdc727f26dab81c6ae6d06aef6db966a991e2342b (patch)
treec0eefea3ee2d31d5517104e412d4fe8e8e404607 /framework/Web/THttpSession.php
parenta779552bc0809d5673d7b4353168aef8114035b4 (diff)
Merged /branches/3.1:r2773 into trunk
Diffstat (limited to 'framework/Web/THttpSession.php')
-rw-r--r--framework/Web/THttpSession.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/framework/Web/THttpSession.php b/framework/Web/THttpSession.php
index e9f815e5..bec4c126 100644
--- a/framework/Web/THttpSession.php
+++ b/framework/Web/THttpSession.php
@@ -14,8 +14,8 @@
* THttpSession class
*
* THttpSession provides session-level data management and the related configurations.
- * To start the session, call {@open}; to complete and send out session data, call {@close};
- * to destroy the session, call {@destroy}. If AutoStart is true, then the session
+ * To start the session, call {@link open}; to complete and send out session data, call {@link close};
+ * to destroy the session, call {@link destroy}. If AutoStart is true, then the session
* will be started once the session module is loaded and initialized.
*
* To access data stored in session, use THttpSession like an associative array. For example,
@@ -29,10 +29,10 @@
* </code>
*
* The following configurations are available for session:
- * {@link setAutoStart AutoStart}, {@link setCookie Cookie},
- * {@link setCacheLimiter, {@link setSavePath SavePath},
+ * {@link setAutoStart AutoStart}, {@link setCookieMode CookieMode},
+ * {@link setSavePath SavePath},
* {@link setUseCustomStorage UseCustomStorage}, {@link setGCProbability GCProbability},
- * {@link setCookieUsage CookieUsage}, {@link setTimeout Timeout}.
+ * {@link setTimeout Timeout}.
* See the corresponding setter and getter documentation for more information.
* Note, these properties must be set before the session is started.
*
@@ -54,7 +54,7 @@
* {@link getCookieMode CookieMode}, {@link getUseCustomStorage
* UseCustomStorage}, {@link getAutoStart AutoStart}, {@link getGCProbability
* GCProbability}, {@link getUseTransparentSessionID UseTransparentSessionID}
- * and {@link getTimeOut TimeOut} are configurable properties of THttpSession.
+ * and {@link getTimeout TimeOut} are configurable properties of THttpSession.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id$