Skip to content

Commit

Permalink
Fix login page url (#1278)
Browse files Browse the repository at this point in the history
Use Flake framework to get login url.
Otherwise slashes in the end of the urls are not handled correctly.
Basically reverts 2ee4be6
  • Loading branch information
ByteHamster committed Jul 21, 2024
1 parent 2ee4be6 commit ae0a34d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Frameworks/BaikalAdmin/Controller/Login.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function execute() {
}

function render() {
$sActionUrl = PROJECT_BASEURI;
$sActionUrl = $GLOBALS["ROUTER"]::buildRoute("default", []);
$sSubmittedFlagName = "auth";
$sMessage = "";

Expand Down

0 comments on commit ae0a34d

Please sign in to comment.