This commit is contained in:
dMetzger
2012-08-31 12:16:15 +00:00
parent 75710639d0
commit f5bcab7459
5 changed files with 29 additions and 29 deletions
+2 -2
View File
@@ -103,9 +103,9 @@ class Autoload
{
// request a non Core Class load the associated Core class if exists
if (isset($this->index[$classname.'Core']))
require($this->root_dir.$this->index[$classname.'Core']);
require_once($this->root_dir.$this->index[$classname.'Core']);
if (isset($this->index[$classname]))
require($this->root_dir.$this->index[$classname]);
require_once($this->root_dir.$this->index[$classname]);
}
}
// Call directly ProductCore, ShopCore class