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

This commit is contained in:
Taylor Otwell 2011-08-04 10:07:13 -05:00
parent ec3e059836
commit ede3e12620

View File

@ -164,7 +164,7 @@ $response = System\Routing\Filter::call('before', array(), true);
// --------------------------------------------------------------
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')))
{