Browse Source

url::to method should use url::base.

Taylor Otwell 13 years ago
parent
commit
1372cb3ff8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/url.php

+ 1 - 1
laravel/url.php

@@ -52,7 +52,7 @@ class URL {
 	{
 		if (filter_var($url, FILTER_VALIDATE_URL) !== false) return $url;
 
-		$root = Config::$items['application']['url'].'/'.Config::$items['application']['index'];
+		$root = static::base().'/'.Config::$items['application']['index'];
 
 		// Since SSL is often not used while developing the application, we allow the
 		// developer to disable SSL on all framework generated links to make it more