Browse Source

fixed bug in html link methods.

Taylor Otwell 14 years ago
parent
commit
4669911d61
1 changed files with 2 additions and 2 deletions
  1. 2 2
      system/html.php

+ 2 - 2
system/html.php

@@ -58,7 +58,7 @@ class HTML {
 	 * @param  array   $attributes
 	 * @return string
 	 */
-	public static function link_to_secure($url, $title, $attributes)
+	public static function link_to_secure($url, $title, $attributes = array())
 	{
 		return static::link($url, $title, $attributes, true);
 	}
@@ -71,7 +71,7 @@ class HTML {
 	 * @param  array   $attributes
 	 * @return string
 	 */
-	public static function link_to_asset($url, $title, $attributes)
+	public static function link_to_asset($url, $title, $attributes = array())
 	{
 		return static::link($url, $title, $attributes, false, true);
 	}