Fix login page url (#1278)
Use Flake framework to get login url.
Otherwise slashes in the end of the urls are not handled correctly.
Basically reverts 2ee4be608d
This commit is contained in:
parent
2ee4be608d
commit
ae0a34d324
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ class Login extends \Flake\Core\Controller {
|
|||
}
|
||||
|
||||
function render() {
|
||||
$sActionUrl = PROJECT_BASEURI;
|
||||
$sActionUrl = $GLOBALS["ROUTER"]::buildRoute("default", []);
|
||||
$sSubmittedFlagName = "auth";
|
||||
$sMessage = "";
|
||||
|
||||
|
|
Loading…
Reference in a new issue