[PHP-DOC] cvs: phpdoc /en/functions session.xml From: Egon Schmid (eschmid <email protected>)
Date: 07/27/00

eschmid Thu Jul 27 01:31:07 2000 EDT

  Modified files:
    /phpdoc/en/functions session.xml
  Log:
  Typo found by Jean Delvare.
  
Index: phpdoc/en/functions/session.xml
diff -u phpdoc/en/functions/session.xml:1.19 phpdoc/en/functions/session.xml:1.20
--- phpdoc/en/functions/session.xml:1.19 Mon Jul 17 11:57:14 2000
+++ phpdoc/en/functions/session.xml Thu Jul 27 01:31:06 2000
@@ -106,7 +106,7 @@
     relative URIs will be changed to contain the session id
     automatically. Alternatively, you can use the constant
     <literal>SID</literal> which is defined, if the client did not
- send the appropiate cookie. <literal>SID</literal> is either of
+ send the appropriate cookie. <literal>SID</literal> is either of
     the form <literal>session_name=session_id</literal> or is an empty
     string.
    </para>
@@ -117,7 +117,7 @@
      <title>Counting the number of hits of a single user</title>
      <programlisting role="php">
 &lt;?php
-session_register("count");
+session_register ("count");
 $count++;
 ?&gt;