// Fix class index error

This commit is contained in:
Jerome Nadaud
2013-09-13 12:17:24 +02:00
parent 2bf17241bd
commit 0ba9704c21
+2 -1
View File
@@ -81,7 +81,8 @@ class Autoload
return;
// regenerate the class index if the requested file doesn't exists
if ((isset($this->index[$classname]) && $this->index[$classname] && !is_file($this->root_dir.$this->index[$classname]))
if (!isset($this->index[$classname])
|| ($this->index[$classname] && !is_file($this->root_dir.$this->index[$classname]))
|| (isset($this->index[$classname.'Core']) && $this->index[$classname.'Core'] && !is_file($this->root_dir.$this->index[$classname.'Core'])))
$this->generateIndex();