Browse Source

lowercase namespace when loading bundle.

Taylor Otwell 13 years ago
parent
commit
4774c8d91e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/autoloader.php

+ 1 - 1
laravel/autoloader.php

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