Browse Source

fixed controller routing bug.

Taylor Otwell 13 years ago
parent
commit
4a5e7c6f61
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/routing/route.php

+ 1 - 1
laravel/routing/route.php

@@ -104,7 +104,7 @@ class Route {
 		{
 			if ($response instanceof Delegate)
 			{
-				return Controller::call($response, $this->parameters);
+				return Controller::call($response->destination, $this->parameters);
 			}
 			else
 			{