hholzgra                Wed Feb  9 18:05:07 2005 EDT

  Modified files:              
    /phpdoc/scripts     file-entities.php.in 
  Log:
  once again i fixed the output file, not the .in file :(
  
  
http://cvs.php.net/diff.php/phpdoc/scripts/file-entities.php.in?r1=1.29&r2=1.30&ty=u
Index: phpdoc/scripts/file-entities.php.in
diff -u phpdoc/scripts/file-entities.php.in:1.29 
phpdoc/scripts/file-entities.php.in:1.30
--- phpdoc/scripts/file-entities.php.in:1.29    Wed Feb  9 10:53:19 2005
+++ phpdoc/scripts/file-entities.php.in Wed Feb  9 18:05:05 2005
@@ -17,7 +17,7 @@
   |             Gabor Hojtsy <[EMAIL PROTECTED]>                              |
   +----------------------------------------------------------------------+
   
-  $Id: file-entities.php.in,v 1.29 2005/02/09 15:53:19 nlopess Exp $
+  $Id: file-entities.php.in,v 1.30 2005/02/09 23:05:05 hholzgra Exp $
 */
 
 /**
@@ -95,7 +95,8 @@
 $dh = opendir($refdir);
 while ($dir = readdir($dh)) {
        if ($dir{0} === ".") continue; // ignore system dir entries and hidden 
files
-       if (is_file("$refdir/$dir/reference.xml")) {
+       if (is_file("$refdir/$dir/reference.xml")
+               && !is_file("$refdir/$dir/EXCLUDE")) {
                $dirent = str_replace("_","-",$dir);
                $builtin_extensions[] = "&reference.$dirent.reference;";
        }

Reply via email to