Browse Source

added comment to url class.

Taylor Otwell 13 years ago
parent
commit
a1b3ba7538
1 changed files with 3 additions and 0 deletions
  1. 3 0
      laravel/url.php

+ 3 - 0
laravel/url.php

@@ -64,6 +64,9 @@ class URL {
 
 		$url = static::to($url, $https);
 
+		// Since assets are not served by Laravel, we do not need to come through
+		// the front controller. We'll remove the application index specified in
+		// the application configuration from the generated URL.
 		if (($index = Config::$items['application']['index']) !== '')
 		{
 			$url = str_replace($index.'/', '', $url);