From 21530751a5f9d990309a4fc16313352c40a96c6b Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 2 Apr 2012 11:08:47 -0500 Subject: [PATCH] use url::to --- bundles/docs/libraries/markdown.php | 1 + 1 file changed, 1 insertion(+) diff --git a/bundles/docs/libraries/markdown.php b/bundles/docs/libraries/markdown.php index 59ef7191..6a234051 100755 --- a/bundles/docs/libraries/markdown.php +++ b/bundles/docs/libraries/markdown.php @@ -1445,6 +1445,7 @@ function doAutoLinks($text) { } function _doAutoLinks_url_callback($matches) { $url = $this->encodeAttribute($matches[1]); + $url = Laravel\URL::to($url); $link = "$url"; return $this->hashPart($link); }