Merge pull request #14323 from annando/styles

Removed deprecated parameter
This commit is contained in:
Tobias Diekershoff 2024-07-26 20:42:51 +02:00 committed by GitHub
commit 7b8381fb1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -453,7 +453,7 @@ class Authentication
*/ */
public function setUnauthenticatedVisitor(string $url) public function setUnauthenticatedVisitor(string $url)
{ {
if (Strings::compareLink($this->session->get('visitor_home', ''), $url)) { if (Strings::compareLink($this->session->get('visitor_home') ?: '', $url)) {
return; return;
} }