Browse Source

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

Taylor Otwell 13 years ago
parent
commit
ede3e12620
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/index.php

+ 1 - 1
public/index.php

@@ -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')))
 	{