From 74b65f74d15c3a3a610f7c75037b260291826ad3 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 22 Nov 2011 23:28:31 -0600 Subject: [PATCH] tweaked link_to_asset https handling. --- laravel/html.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/laravel/html.php b/laravel/html.php index dd850b5b..c9cb60a1 100644 --- a/laravel/html.php +++ b/laravel/html.php @@ -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); }