[PHP-DOC] cvs: phpdoc /en/chapters security.xml From: Rasmus Lerdorf (rasmus <email protected>)
Date: 10/02/00

rasmus Sun Oct 1 22:23:18 2000 EDT

  Modified files:
    /phpdoc/en/chapters security.xml
  Log:
  Fix a couple of mistakes
  
  
Index: phpdoc/en/chapters/security.xml
diff -u phpdoc/en/chapters/security.xml:1.5 phpdoc/en/chapters/security.xml:1.6
--- phpdoc/en/chapters/security.xml:1.5 Sun Oct 1 20:02:42 2000
+++ phpdoc/en/chapters/security.xml Sun Oct 1 22:23:18 2000
@@ -301,7 +301,7 @@
     interface is regularly used for file management, so the Apache user
     is allowed to delete files in the user home directories.
    </simpara>
- <simpara>
+ <para>
     <example>
      <title>Filesystem attack</title>
      <programlisting role="php">
@@ -318,12 +318,12 @@
    Since the username is postable from a user form, they can submit
    a username and file belonging to someone else, and delete files.
    In this case, you'd want to use some other form of authentication.
- </simpara>
+ </para>
   </sect1>
   
   <sect1 id="security.variables">
    <title>User Submitted Data</title>
- <simpara>
+ <para>
     The greatest weakness in many PHP programs is not inherent in the
     language itself, but merely an issue of code not being written with
     security in mind. For this reason, you should always take the time
@@ -360,8 +360,8 @@
       <simpara>
        Can unusual or undesirable data be acted upon?
       </simpara>
- <listitem>
      </listitem>
+ <listitem>
      <simpara>
        Can this script be used in unintended ways?
       </simpara>
@@ -381,7 +381,7 @@
     By adequately asking these questions while writing the script,
     rather than later, you prevent an unfortunate re-write when you
     need to oncrease your security.
- </simpara>
+ </para>
   </sect1>
    
  </chapter>