mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
BUG Request object now has URL changed
Instead of cloning the Request object and losing all the custom attributes that don't come through the construct (eg: headers) we can now set the URL alone.
This commit is contained in:
parent
b74af926ce
commit
eb2e0d7877
@ -117,12 +117,10 @@ class RootURLController extends Controller {
|
||||
return $this->response;
|
||||
}
|
||||
|
||||
$request = new SS_HTTPRequest (
|
||||
$request->httpMethod(), self::get_homepage_link() . '/', $request->getVars(), $request->postVars()
|
||||
);
|
||||
$request->setUrl(self::get_homepage_link() . '/');
|
||||
$request->match('$URLSegment//$Action', true);
|
||||
|
||||
$controller = new ModelAsController();
|
||||
|
||||
$result = $controller->handleRequest($request, $model);
|
||||
|
||||
$this->popCurrent();
|
||||
|
Loading…
Reference in New Issue
Block a user