From 8ca402949e95f3a5eae0ca6d9966908204fe9411 Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Sat, 19 Jan 2002 07:48:07 +0000 Subject: [PATCH] Add "none" for session cache limiter. Fix typo. # If cache limiter name is invalid, session module will # not use cache limiter. "none" is not defined, but it # will disable cache limitter. There are people who have # problem for diableing cache limiter :) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@68098 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/session.xml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/functions/session.xml b/functions/session.xml index 416f784ee5..d516f5a2bb 100644 --- a/functions/session.xml +++ b/functions/session.xml @@ -1,5 +1,5 @@ - + Session handling functions Sessions @@ -90,7 +90,7 @@ else { Use of $_SESSION (or $HTTP_SESSION_VARS with PHP 4.0.6 or less) is - recommended for security and code readablility. With $_SESSION or + recommended for security and code readablity. With $_SESSION or $HTTP_SESSION_VARS, there is no need to use session_register()/session_unregister()/session_is_registered() functions. Users can access session variable like a normal @@ -375,9 +375,10 @@ To continue, click here - session.cache_limiter specifies cache control - method to use for session pages (nocache/private/private_no_expire/public). - Defaults to nocache. + session.cache_limiter specifies cache + control method to use for session pages + (none/nocache/private/private_no_expire/public). Defaults to + nocache.