philip          Thu Apr 18 19:07:20 2002 EDT

  Modified files:              
    /phpdoc/en/features remote-files.xml 
  Log:
  $HTTP_USER_AGENT -> $HTTP_SERVER_VARS['HTTP_USER_AGENT']
  
  
Index: phpdoc/en/features/remote-files.xml
diff -u phpdoc/en/features/remote-files.xml:1.15 
phpdoc/en/features/remote-files.xml:1.16
--- phpdoc/en/features/remote-files.xml:1.15    Mon Apr  1 12:49:16 2002
+++ phpdoc/en/features/remote-files.xml Thu Apr 18 19:07:18 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.15 $ -->
+<!-- $Revision: 1.16 $ -->
  <chapter id="features.remote-files">
   <title>Using remote files</title>
 
@@ -73,7 +73,7 @@
     exit;
 }
 /* Write the data here. */
-fputs ($file, "$HTTP_USER_AGENT\n");
+fputs ($file, $HTTP_SERVER_VARS['HTTP_USER_AGENT'] . "\n");
 fclose ($file);
 ?>
 ]]>  


Reply via email to