Fix the check of quoted users
authorAlexander Ebert <ebert@woltlab.com>
Thu, 6 Jul 2023 14:41:20 +0000 (16:41 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Thu, 6 Jul 2023 14:41:20 +0000 (16:41 +0200)
The check against the host was simplified in 2e238f48617d5d2a97d1e2b7a0d296337570b396, but the condition was incorrectly modified.

wcfsetup/install/files/lib/util/MessageUtil.class.php

index 43c9a3b74040f965f533040294a9bdf35fff906a..48c754b9381accc9e9dbb00df6f881d190677059 100644 (file)
@@ -196,7 +196,7 @@ class MessageUtil
                 // check if there is a link set and if it points to any of the apps
                 $link = $element->getAttribute('data-link');
                 $host = ($link) ? Url::parse($link)['host'] : '';
-                if ($host === $ownHost) {
+                if ($host !== $ownHost) {
                     // links mismatch, do not treat this occurrence as a username
                     continue;
                 }