This commit is contained in:
Rémi Gaillard
2013-09-12 15:04:47 +02:00
parent f9b1f0ab5e
commit 30591b7c28
+2 -2
View File
@@ -80,7 +80,7 @@ class Autoload
if (strpos(strtolower($classname), 'smarty_') === 0)
return;
// regenerate the class index if the requested class is not found in the index or if the requested file doesn't exists
// 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]))
|| (isset($this->index[$classname.'Core']) && $this->index[$classname.'Core'] && !is_file($this->root_dir.$this->index[$classname.'Core'])))
$this->generateIndex();
@@ -186,4 +186,4 @@ class Autoload
{
return isset($this->index[$classname]) ? $this->index[$classname] : null;
}
}
}