Browse Source

Simple formatting tweaks to the URL class.

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

+ 3 - 3
laravel/url.php

@@ -30,8 +30,6 @@ class URL {
 	/**
 	 * Generate an application URL.
 	 *
-	 * If the given URL is already well-formed, it will be returned unchanged.
-	 *
 	 * <code>
 	 *		// Create a URL to a location within the application
 	 *		$url = URL::to('user/profile');
@@ -172,7 +170,9 @@ class URL {
 	 */
 	public static function to_action($action, $parameters = array(), $https = false)
 	{
-		return static::to(str_replace(array('.', '@'), '/', $action).'/'.implode('/', $parameters), $https);
+		$action = str_replace(array('.', '@'), '/', $action);
+
+		return static::to($action.'/'.implode('/', $parameters), $https);
 	}
 
 	/**