Browse Source

Refactoring the redirect class.

Taylor Otwell 13 years ago
parent
commit
3f35bb1591
1 changed files with 0 additions and 2 deletions
  1. 0 2
      system/redirect.php

+ 0 - 2
system/redirect.php

@@ -77,13 +77,11 @@ class Redirect {
 	{
 		$parameters = (isset($parameters[0])) ? $parameters[0] : array();
 
-		// Dynamically redirect to a secure route URL.
 		if (strpos($method, 'to_secure_') === 0)
 		{
 			return static::to(URL::to_route(substr($method, 10), $parameters, true));
 		}
 
-		// Dynamically redirect a route URL.
 		if (strpos($method, 'to_') === 0)
 		{
 			return static::to(URL::to_route(substr($method, 3), $parameters));