Commit ede3e126 authored by Taylor Otwell's avatar Taylor Otwell

Changed Request::uri() call to System\Request::uri().

parent ec3e0598
...@@ -164,7 +164,7 @@ $response = System\Routing\Filter::call('before', array(), true); ...@@ -164,7 +164,7 @@ $response = System\Routing\Filter::call('before', array(), true);
// -------------------------------------------------------------- // --------------------------------------------------------------
if (is_null($response)) if (is_null($response))
{ {
$segments = explode('/', $uri = Request::uri()); $segments = explode('/', $uri = System\Request::uri());
if (in_array($segments[0], System\Config::get('application.modules'))) if (in_array($segments[0], System\Config::get('application.modules')))
{ {
......
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