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
This commit is contained in:
Yasuo Ohgaki 2002-01-19 07:48:07 +00:00
parent 595ee91dfe
commit 8ca402949e

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.74 $ -->
<!-- $Revision: 1.75 $ -->
<reference id="ref.session">
<title>Session handling functions</title>
<titleabbrev>Sessions</titleabbrev>
@ -90,7 +90,7 @@ else {
</para>
<para>
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, <A HREF="nextpage.php?<?=SID?>">click here</A>
</listitem>
<listitem>
<simpara>
<literal>session.cache_limiter</literal> specifies cache control
method to use for session pages (nocache/private/private_no_expire/public).
Defaults to <literal>nocache</literal>.
<literal>session.cache_limiter</literal> specifies cache
control method to use for session pages
(none/nocache/private/private_no_expire/public). Defaults to
<literal>nocache</literal>.
</simpara>
</listitem>
<listitem>