From 466edd003d8341e10ab37607a4f34a421632c926 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Fri, 11 Jul 2003 16:09:10 +0000 Subject: [PATCH] Fixed bugs in Parser. Updated version number to make a release. --- Doxyfile | 2 +- package.xml | 2 +- src/BIFE/Parser.php | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Doxyfile b/Doxyfile index 5336352..585a684 100644 --- 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 diff --git a/package.xml b/package.xml index 407072e..83b67ba 100644 --- a/package.xml +++ b/package.xml @@ -19,7 +19,7 @@ in mind. One of the main goals of BIFE is to be fast. - 1.0.0beta1 + 1.0.0beta2 2003-06-29 beta Check http://bife.llucax.hn.org/ for details. diff --git a/src/BIFE/Parser.php b/src/BIFE/Parser.php index ee35bfc..c51ff53 100644 --- a/src/BIFE/Parser.php +++ b/src/BIFE/Parser.php @@ -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 +?> -- 2.43.0