Browse Source

allow non routable bundles to just use string values.

Taylor Otwell 13 years ago
parent
commit
da7d076f54
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/core.php

+ 2 - 2
laravel/core.php

@@ -149,7 +149,7 @@ $bundles = require BUNDLE_PATH.'bundles'.EXT;
 
 foreach ($bundles as $key => $value)
 {
-	$handles = array_get($value, 'handles');
+	$location = (is_array($value)) ? $value['location'] : $value;
 
-	Bundle::register($key, $value['location'], $handles);
+	Bundle::register($key, $location, array_get($value, 'handles'));
 }