yohgaki         Sat Jan 19 02:48:07 2002 EDT

  Modified files:              
    /phpdoc/en/functions        session.xml 
  Log:
  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 :)
  
  
Index: phpdoc/en/functions/session.xml
diff -u phpdoc/en/functions/session.xml:1.74 phpdoc/en/functions/session.xml:1.75
--- phpdoc/en/functions/session.xml:1.74        Tue Jan 15 08:54:37 2002
+++ phpdoc/en/functions/session.xml     Sat Jan 19 02:48:07 2002
@@ -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 @@
    </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 @@
      </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>


Reply via email to