X-Git-Url: https://git.llucax.com/software/bife/bife.git/blobdiff_plain/b4bbac05e751c35f8d0f54957d31319cd801cbf3..466edd003d8341e10ab37607a4f34a421632c926:/src/BIFE/Parser.php 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 +?>