Bug #99839
openCan't append L in additionalParams when using recordLink to redirect
0%
Description
The function bootFrontendController in RedirectService does the following:
$controller->calculateLinkVars($queryParams);
$controller->getConfigArray();
But should probably be in the other order because calculateLinkVars needs the config.
A test here when redirecting to a record with &L=3 in additionalParams:
$controller->calculateLinkVars($queryParams);
$controller->getConfigArray();
var_dump($controller->linkVars); // string(0) ""
When the order is switched:
$controller->calculateLinkVars($queryParams);
$controller->getConfigArray();
var_dump($controller->linkVars); // string(4) "&L=3"
Updated by Peter Kraume 12 months ago
- Related to Bug #99797: Redirects don't respect current language added
Updated by Benni Mack 5 months ago
- Status changed from New to Needs Feedback
Hey Phat Hoang,
can you try this in v13 again? We've been working on this area quite a lot in the past versions...