Skip to content

Commit

Permalink
Merge pull request #9 from drupaltest/https-base-url
Browse files Browse the repository at this point in the history
Should work also with HTTPS base URL
  • Loading branch information
claudiu-cristea authored Dec 14, 2023
2 parents f6f9b6c + 19f97ab commit a2309d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AuthenticationManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ protected function getOneTimeLoginUrl(UserInterface $account): string
// base URL manually.
// @todo Remove this workaround once this is fixed in core.
// @see https://www.drupal.org/project/drupal/issues/2548095
'base_url' => $GLOBALS['base_url'],
'base_url' => $this->getMinkParameter('base_url'),
]
)->toString();
}
Expand Down

0 comments on commit a2309d8

Please sign in to comment.