From 9e690c8af6ad14617f81850a898cfc21c590a30f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 16 Jan 2012 19:37:57 -0600 Subject: [PATCH] fix problem with bundle assets. --- laravel/bundle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/bundle.php b/laravel/bundle.php index 42c7b252..608503b6 100644 --- a/laravel/bundle.php +++ b/laravel/bundle.php @@ -159,7 +159,7 @@ public static function path($bundle) */ public static function assets($bundle) { - return ($bundle != DEFAULT_BUNDLE) ? URL::base()."/bundles/{$bundle}/" : PUBLIC_PATH; + return ($bundle != DEFAULT_BUNDLE) ? URL::base()."/bundles/{$bundle}/" : URL::base().'/'; } /**