Commit fe0f4a76 authored by Taylor Otwell's avatar Taylor Otwell

Pass request method and uri to before and after filters.

parent 1a966960
......@@ -141,7 +141,7 @@ if (ACTIVE_MODULE !== 'application' and file_exists($filters = ACTIVE_MODULE_PAT
// --------------------------------------------------------------
foreach (array('before', ACTIVE_MODULE.'::before') as $filter)
{
$response = Routing\Filter::call($filter, array(), true);
$response = Routing\Filter::call($filter, array(Request::method(), Request::uri()), true);
if ( ! is_null($response)) break;
}
......@@ -163,7 +163,7 @@ $response = Response::prepare($response);
// --------------------------------------------------------------
foreach (array(ACTIVE_MODULE.'::after', 'after') as $filter)
{
Routing\Filter::call($filter, array($response));
Routing\Filter::call($filter, array($response, Request::method(), Request::uri()));
}
// --------------------------------------------------------------
......
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