alexws          Sat Jan 18 14:58:04 2003 EDT

  Modified files:              
    /phpdoc/en/chapters security.xml 
  Log:
  Fixed some bugs during translation (added quotes somewhere) and something else.
  
Index: phpdoc/en/chapters/security.xml
diff -u phpdoc/en/chapters/security.xml:1.49 phpdoc/en/chapters/security.xml:1.50
--- phpdoc/en/chapters/security.xml:1.49        Wed Sep 18 09:18:34 2002
+++ phpdoc/en/chapters/security.xml     Sat Jan 18 14:58:04 2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.49 $ -->
+<!-- $Revision: 1.50 $ -->
  <chapter id="security">
   <title>Security</title>
 
@@ -387,7 +387,7 @@
 $username = $_POST['user_submitted_name'];
 $homedir = "/home/$username";
 $file_to_delete = "$userfile";
-unlink ($homedir/$userfile);
+unlink ("$homedir/$userfile");
 echo "$file_to_delete has been deleted!";
 ?>
 ]]>
@@ -561,7 +561,7 @@
      informations in this way will be a hard work.
     </simpara>
     <!--simpara>
-     If your database server native SSL support, consider to use <link
+     If your database server have native SSL support, consider to use <link
      linkend="ref.openssl">OpenSSL functions</link> in communication between
      PHP and database via SSL.
     </simpara-->



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to