Browse Source

bundle::exists should return true for default bundle.

Taylor Otwell 13 years ago
parent
commit
643b440872
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/bundle.php

+ 1 - 1
laravel/bundle.php

@@ -131,7 +131,7 @@ class Bundle {
 	 */
 	public static function exists($bundle)
 	{
-		return in_array(strtolower($bundle), static::names());
+		return $bundle == DEFAULT_BUNDLE or in_array(strtolower($bundle), static::names());
 	}
 
 	/**