We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb70fe2 commit 36516f6Copy full SHA for 36516f6
plugins/system/languagefilter/src/Extension/LanguageFilter.php
@@ -699,6 +699,17 @@ public function onUserLogin(LoginEvent $event): void
699
$app->setUserState('users.login.form.return', 'index.php?Itemid=' . $associationItemid);
700
$foundAssociation = true;
701
}
702
+ } elseif ($this->mode_sef) {
703
+ if ($app->getUserState('users.login.form.return')) {
704
+ $app->setUserState(
705
+ 'users.login.form.return',
706
+ Route::_(
707
+ $app->getUserState('users.login.form.return'),
708
+ false
709
+ )
710
+ );
711
+ $foundAssociation = true;
712
+ }
713
} elseif (isset($associations[$lang_code]) && $menu->getItem($associations[$lang_code])) {
714
/**
715
* The login form does not contain a menu item redirection.
0 commit comments