replaced new occurences of 'Request::create()' with '::create()'

This commit is contained in:
Jean-François Simon 2013-03-15 13:43:45 +01:00
parent 801a7f887b
commit 53cf12b544

View File

@ -89,7 +89,7 @@ class InlineFragmentRenderer extends RoutableFragmentRenderer
// the sub-request is internal
$server['REMOTE_ADDR'] = '127.0.0.1';
$subRequest = Request::create($uri, 'get', array(), $cookies, array(), $server);
$subRequest = $request::create($uri, 'get', array(), $cookies, array(), $server);
if ($session = $request->getSession()) {
$subRequest->setSession($session);
}