Skip to content
Snippets Groups Projects
Commit 9792628f authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Bugfix: do not pass null implicitly

parent cf083231
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ class Auth
public static function getAdminLogoutURL(?string $returnTo = null): string
{
$as = new Authentication\Simple('admin');
return $as->getLogoutURL($returnTo = null);
return $as->getLogoutURL($returnTo);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment