From 6c6f92a7c98fcaa05ed7cef4bdd5600c4bfc3613 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 13 Jul 2011 11:03:22 -0700 Subject: [PATCH] Added default value to URL::to_asset method. --- system/url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/url.php b/system/url.php index 3e1de338..76a615d3 100644 --- a/system/url.php +++ b/system/url.php @@ -50,7 +50,7 @@ public static function to_secure($url = '') * @param string $url * @return string */ - public static function to_asset($url) + public static function to_asset($url = '') { return static::to($url, false, true); }