]> git.llucax.com Git - software/bife/bife.git/commitdiff
Fixed bugs in Parser. Updated version number to make a release. 1.0.0beta2
authorLeandro Lucarella <llucax@gmail.com>
Fri, 11 Jul 2003 16:09:10 +0000 (16:09 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Fri, 11 Jul 2003 16:09:10 +0000 (16:09 +0000)
Doxyfile
package.xml
src/BIFE/Parser.php

index 5336352e70c88587b8ab700e2728ee8f86ecb2b3..585a684d4b7dace146bc03f09bd7bdc07d0547d7 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -4,7 +4,7 @@
 # General configuration options
 #---------------------------------------------------------------------------
 PROJECT_NAME           = "BIFE - Build It FastEr"
-PROJECT_NUMBER         = 1.0.0beta1
+PROJECT_NUMBER         = 1.0.0beta2
 OUTPUT_DIRECTORY       = api
 OUTPUT_LANGUAGE        = English
 USE_WINDOWS_ENCODING   = NO
index 407072e3c0770d98c76a6ef44fdf0823c858c8c4..83b67bad45ca31940dceb01e3ec47ef5ee4489bf 100644 (file)
@@ -19,7 +19,7 @@ in mind. One of the main goals of BIFE is to be fast.
     </maintainers>
 
     <release>
-        <version>1.0.0beta1</version>
+        <version>1.0.0beta2</version>
         <date>2003-06-29</date>
         <state>beta</state>
         <notes>Check http://bife.llucax.hn.org/ for details.</notes>
index ee35bfca192f5459954b56171d663f4b5271aa48..c51ff53b6a70bac5168601f5e5ed0b75284f879a 100644 (file)
@@ -153,7 +153,7 @@ class BIFE_Parser {
                 strtr(ucwords(strtr(strtolower($name), ':', ' ')), ' ', '/') .
                 '.php';
             if (@include_once $inc) {
-                $this->includes[] = $inc;
+                $this->requires[] = $inc;
             }
         }
         if (class_exists($class)) {
@@ -277,7 +277,7 @@ class BIFE_Parser {
         fclose($fp);
         if ($this->cache) {
             $fp = fopen($cache, 'w');
-            fputs($fp, serialize($this->includes) . "\n");
+            fputs($fp, serialize($this->requires) . "\n");
             fputs($fp, serialize($this->root));
             fclose($fp);
         }
@@ -303,4 +303,4 @@ class BIFE_Parser {
 
 } // -X2C Class :Parser
 
-?>
\ No newline at end of file
+?>