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

This commit is contained in:
Taylor Otwell 2011-08-08 21:46:59 -05:00
parent 512342c0db
commit aa1e20bcef
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public static function load($class)
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);
}
/**