lowercase namespace when loading bundle.

This commit is contained in:
Taylor Otwell 2012-01-27 19:33:23 -06:00
parent a351e91aef
commit 4774c8d91e
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class_alias(static::$aliases[$class], $class);
// match the name of their bundle.
if (Bundle::exists($namespace) and ! Bundle::started($namespace))
{
Bundle::start($namespace);
Bundle::start(strtolower($namespace));
static::load($class);
}