]> git.llucax.com Git - software/bife/bife.git/blobdiff - src/BIFE/Parser.php
Fixed bugs in Parser. Updated version number to make a release.
[software/bife/bife.git] / src / BIFE / Parser.php
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
+?>