Skip to content

Commit

Permalink
Merge pull request #3824 from thabaum/fixes-login-button-url
Browse files Browse the repository at this point in the history
Ensure "login" route is included in login URL construction. Fixes #3766
  • Loading branch information
sbwalker authored Feb 18, 2024
2 parents e01a1a4 + a741b1b commit 96a29e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Oqtane.Client/Themes/Controls/Theme/LoginBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected override void OnParametersSet()
else
{
// use existing value
loginurl = "?returnurl=" + PageState.QueryString["returnurl"];
loginurl += "?returnurl=" + PageState.QueryString["returnurl"];
}

// set logout url
Expand Down

0 comments on commit 96a29e9

Please sign in to comment.