Commit b40e69c4 authored by Taylor Otwell's avatar Taylor Otwell

fixed controller routing bug.

parent 4a5e7c6f
......@@ -64,7 +64,7 @@ abstract class Controller {
// 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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment