Commit 74b65f74 authored by Taylor Otwell's avatar Taylor Otwell

tweaked link_to_asset https handling.

parent 7cc591f9
...@@ -129,9 +129,10 @@ class HTML { ...@@ -129,9 +129,10 @@ class HTML {
* @param string $url * @param string $url
* @param string $title * @param string $title
* @param array $attributes * @param array $attributes
* @param bool $https
* @return string * @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); return static::link($url, $title, $attributes, $https, true);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment