tweaked link_to_asset https handling.

This commit is contained in:
Taylor Otwell 2011-11-22 23:28:31 -06:00
parent 7cc591f901
commit 74b65f74d1
1 changed files with 2 additions and 1 deletions

View File

@ -129,9 +129,10 @@ public static function link_to_secure($url, $title, $attributes = array())
* @param string $url
* @param string $title
* @param array $attributes
* @param bool $https
* @return string
*/
public static function link_to_asset($url, $title, $attributes = array(), $https = false)
public static function link_to_asset($url, $title, $attributes = array(), $https = null)
{
return static::link($url, $title, $attributes, $https, true);
}