mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #8304 from micmania1/patch-12
BUGFIX Installer redirect to home/ (without domain)
This commit is contained in:
commit
e8261589e8
@ -601,7 +601,7 @@ TEXT;
|
||||
$token = new ParameterConfirmationToken('flush', new HTTPRequest('GET', '/'));
|
||||
$params = http_build_query($token->params());
|
||||
|
||||
$destinationURL = BASE_URL . '/' . (
|
||||
$destinationURL = rtrim(BASE_URL, '/') . '/' . (
|
||||
$this->checkModuleExists('cms')
|
||||
? "home/successfullyinstalled?$params"
|
||||
: "?$params"
|
||||
|
Loading…
Reference in New Issue
Block a user