nohn            Sun Feb 24 07:46:47 2002 EDT

  Modified files:              
    /phpdoc/en/functions        dir.xml 
  Log:
  fixing bug #15153
  
  
Index: phpdoc/en/functions/dir.xml
diff -u phpdoc/en/functions/dir.xml:1.32 phpdoc/en/functions/dir.xml:1.33
--- phpdoc/en/functions/dir.xml:1.32    Sun Feb 10 13:56:54 2002
+++ phpdoc/en/functions/dir.xml Sun Feb 24 07:46:46 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.32 $ -->
+<!-- $Revision: 1.33 $ -->
  <reference id="ref.dir">
   <title>Directory functions</title>
   <titleabbrev>Directories</titleabbrev>
@@ -224,12 +224,12 @@
     </para>
     <para>
      <example>
-      <title>List all files in the current directory</title>
+      <title>List all files in a directory</title>
       <programlisting role="php">
 <![CDATA[
 // Note that !== did not exist until 4.0.0-RC2
 <?php
-$handle=opendir('.');
+$handle=opendir('/path/to/files');
 echo "Directory handle: $handle\n";
 echo "Files:\n";
 


Reply via email to