fixed controller routing bug.

This commit is contained in:
Taylor Otwell
2011-10-15 21:44:39 -05:00
parent 4a5e7c6f61
commit b40e69c47a

View File

@@ -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));