From: Marcel Werk Date: Thu, 13 Feb 2020 23:37:25 +0000 (+0100) Subject: only one member was notified when mentioning a user group X-Git-Tag: 5.2.3~27 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2c8c78aaaaee9b3243c0e3a3f3a97f801a847049;p=GitHub%2FWoltLab%2FWCF.git only one member was notified when mentioning a user group --- diff --git a/wcfsetup/install/files/lib/util/MessageUtil.class.php b/wcfsetup/install/files/lib/util/MessageUtil.class.php index 1c35d87fa2..a66b0b6a45 100644 --- a/wcfsetup/install/files/lib/util/MessageUtil.class.php +++ b/wcfsetup/install/files/lib/util/MessageUtil.class.php @@ -92,7 +92,7 @@ class MessageUtil { ".$conditions; $statement = WCF::getDB()->prepareStatement($sql); $statement->execute($conditions->getParameters()); - while ($username = $statement->fetchSingleColumn()) { + while ($username = $statement->fetchColumn()) { $usernames[] = $username; } }