[PHP-DOC] cvs: phpdoc /en/features http-auth.xml remote-files.xml From: Stefan Livieratos (stefan <email protected>)
Date: 07/05/00

sli Wed Jul 5 03:24:17 2000 EDT

  Modified files:
    /phpdoc/en/features http-auth.xml remote-files.xml
  Log:
  Fixed typos
  
  
Index: phpdoc/en/features/http-auth.xml
diff -u phpdoc/en/features/http-auth.xml:1.2 phpdoc/en/features/http-auth.xml:1.3
--- phpdoc/en/features/http-auth.xml:1.2 Thu Dec 9 16:34:39 1999
+++ phpdoc/en/features/http-auth.xml Wed Jul 5 03:24:17 2000
@@ -78,7 +78,7 @@
     exit;
   }
 
- if(!isset($PHP_AUTH_USER) || ($SeenBefore == 1 && !strcmp($OldAuth, $PHP_AUTH_USER)) ) {
+ if(!isset($PHP_AUTH_USER) || ($SeenBefore == 1 &amp;&amp; !strcmp($OldAuth, $PHP_AUTH_USER)) ) {
     authenticate();
   }
   else {
Index: phpdoc/en/features/remote-files.xml
diff -u phpdoc/en/features/remote-files.xml:1.2 phpdoc/en/features/remote-files.xml:1.3
--- phpdoc/en/features/remote-files.xml:1.2 Thu Dec 9 16:34:39 1999
+++ phpdoc/en/features/remote-files.xml Wed Jul 5 03:24:17 2000
@@ -25,7 +25,7 @@
    <example>
     <title>Getting the title of a remote page</title>
     <programlisting>
-&lt?php
+&lt;?php
   $file = fopen("http://www.php.net/", "r");
   if (!$file) {
     echo "&lt;p>Unable to open remote file.\n";
@@ -57,7 +57,7 @@
    <example>
     <title>Storing data on a remote server</title>
     <programlisting>
-&lt?php
+&lt;?php
   $file = fopen("ftp://ftp.php.net/incoming/outputfile", "w");
   if (!$file) {
     echo "&lt;p>Unable to open remote file for writing.\n";