Commit d02f4deb by Taylor Otwell

tweaking bootstrap.

parent d681f499
...@@ -154,12 +154,14 @@ foreach (Bundle::all() as $bundle => $config) ...@@ -154,12 +154,14 @@ foreach (Bundle::all() as $bundle => $config)
* static property. If no route is found, the 404 response will * static property. If no route is found, the 404 response will
* be returned to the browser. * be returned to the browser.
*/ */
$uri = URI::current();
if (count(URI::$segments) > 15) if (count(URI::$segments) > 15)
{ {
throw new \Exception("Invalid request. Too many URI segments."); throw new \Exception("Invalid request. Too many URI segments.");
} }
Request::$route = Routing\Router::route(Request::method(), URI::current()); Request::$route = Routing\Router::route(Request::method(), $uri);
if (is_null(Request::$route)) if (is_null(Request::$route))
{ {
......
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