|
@@ -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) { |
|
@@ -147,7 +147,7 @@ discard block |
|
|
block discarded – undo |
|
147
|
147
|
} |
|
148
|
148
|
} |
|
149
|
149
|
|
|
150
|
|
- $path = $matches['firstUriPart'] . '/' . $path; |
|
|
150
|
+ $path = $matches['firstUriPart'].'/'.$path; |
|
151
|
151
|
} |
|
152
|
152
|
|
|
153
|
153
|
/** |
|
@@ -160,6 +160,6 @@ discard block |
|
|
block discarded – undo |
|
160
|
160
|
foreach ($dimensionPresets as $dimensionName => $dimensionPreset) { |
|
161
|
161
|
$defaultDimensionPresetUriSegments[] = $dimensionPreset['presets'][$dimensionPreset['defaultPreset']]['uriSegment']; |
|
162
|
162
|
} |
|
163
|
|
- $path = implode('_', $defaultDimensionPresetUriSegments) . '/' . $path; |
|
|
163
|
+ $path = implode('_', $defaultDimensionPresetUriSegments).'/'.$path; |
|
164
|
164
|
} |
|
165
|
165
|
} |
Please login to merge, or discard this patch.