From 0a6b6a6e8e39e58342873586f9da4e0ddf2d7246 Mon Sep 17 00:00:00 2001 From: bMancone Date: Wed, 11 Jan 2012 18:08:49 +0000 Subject: [PATCH] // Fixed pre-commit test.. --- classes/Autoload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Autoload.php b/classes/Autoload.php index 94b5fc995..21d939640 100644 --- a/classes/Autoload.php +++ b/classes/Autoload.php @@ -88,7 +88,7 @@ class Autoload if (substr($classname, -4) != 'Core') { // If requested class does not exist, load associated core class - if (isset($this->index[$classname]) && !$this->indexTest[$classname]) + if (isset($this->index[$classname]) && !$this->index[$classname]) { require_once($this->root_dir.$this->index[$classname.'Core']); if (file_exists($this->root_dir.'override/'.$this->index[$classname.'Core']))