From 161796e983c17bc69f8d2448c9cd96769380e527 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 27 Jan 2012 19:38:22 -0600 Subject: [PATCH] default location to bundle name. --- laravel/bundle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/bundle.php b/laravel/bundle.php index 2857aaac..770be6f2 100644 --- a/laravel/bundle.php +++ b/laravel/bundle.php @@ -33,7 +33,7 @@ class Bundle { */ public static function register($bundle, $config = array()) { - $defaults = array('handles' => null, 'auto' => false); + $defaults = array('location' => $bundle, 'handles' => null, 'auto' => false); // If the given config is actually a string, we will assume it is a location // and convert it to an array so that the developer may conveniently add