Browse Source

tweaked link_to_asset https handling.

Taylor Otwell 13 years ago
parent
commit
74b65f74d1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      laravel/html.php

+ 2 - 1
laravel/html.php

@@ -129,9 +129,10 @@ class HTML {
 	 * @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);
 	}