fixed controller routing bug.

This commit is contained in:
Taylor Otwell 2011-10-15 21:44:39 -05:00
parent 4a5e7c6f61
commit b40e69c47a
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public static function call($destination, $parameters = array())
// return an instsance of Response, we will make on now.
if ( ! $response instanceof Response) $response = new Response($response);
$filters = array_merge($this->filters('after'), array('after'));
$filters = array_merge($controller->filters('after'), array('after'));
Filter::run($filters, array($response));