git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17126 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
dMetzger
2012-08-31 12:16:15 +00:00
parent 693096d497
commit 91d66ffb53
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