Browse Source

fix bug in bundle assets method.

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

+ 1 - 1
laravel/bundle.php

@@ -159,7 +159,7 @@ class Bundle {
 	 */
 	public static function assets($bundle)
 	{
-		return ($bundle != DEFAULT_BUNDLE) ? PUBLIC_PATH."bundles/{$bundle}/" : PUBLIC_PATH;
+		return ($bundle != DEFAULT_BUNDLE) ? URL::base()."/bundles/{$bundle}/" : PUBLIC_PATH;
 	}
 
 	/**