Browse Source

fixed bug in auto-loader that caused module classes to not load correctly.

Taylor Otwell 13 years ago
parent
commit
aa1e20bcef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/loader.php

+ 1 - 1
system/loader.php

@@ -52,7 +52,7 @@ class Loader {
 			return class_alias(static::$aliases[$class], $class);
 		}
 
-		( ! static::load_from_registered($file)) or static::load_from_module($file);
+		(static::load_from_registered($file)) or static::load_from_module($file);
 	}
 
 	/**