fix problem with bundle assets.

This commit is contained in:
Taylor Otwell 2012-01-16 19:37:57 -06:00
parent 2bbb9e55e9
commit 9e690c8af6
1 changed files with 1 additions and 1 deletions

View File

@ -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().'/';
}
/**