|
@@ -79,7 +79,7 @@ discard block |
|
|
block discarded – undo |
|
79
|
79
|
/** @var RequestHandler $activeRequestHandler */ |
|
80
|
80
|
$activeRequestHandler = $this->bootstrap->getActiveRequestHandler(); |
|
81
|
81
|
$parentHttpRequest = $activeRequestHandler->getHttpRequest(); |
|
82
|
|
- $uri = rtrim($parentHttpRequest->getBaseUri(), '/') . '/' . $path; |
|
|
82
|
+ $uri = rtrim($parentHttpRequest->getBaseUri(), '/').'/'.$path; |
|
83
|
83
|
$httpRequest = Request::create(new Uri($uri)); |
|
84
|
84
|
$matchingRoute = $this->router->route($httpRequest); |
|
85
|
85
|
if (!$matchingRoute) { |
|
@@ -146,7 +146,7 @@ discard block |
|
|
block discarded – undo |
|
146
|
146
|
} |
|
147
|
147
|
} |
|
148
|
148
|
|
|
149
|
|
- $path = $matches['firstUriPart'] . '/' . $path; |
|
|
149
|
+ $path = $matches['firstUriPart'].'/'.$path; |
|
150
|
150
|
} |
|
151
|
151
|
|
|
152
|
152
|
} |
Please login to merge, or discard this patch.