fixed controller routing bug.
This commit is contained in:
parent
4a5e7c6f61
commit
b40e69c47a
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in New Issue