diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-03 19:00:02 +0000 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-03 19:00:02 +0000 |
commit | 3bb42d117027ebf610481ca3b0733854e0127e56 (patch) | |
tree | d0e5aa1f5fb0407879f4ba155dbfe170165a6dd6 /classes/Notice.php | |
parent | e6fd387c94f858a7cc63b90b02ad2afb135b6aba (diff) |
Use poster's subscribed groups to disambiguate group linking when a remote group and a local group exist with the same name. (If you're a member of two groups with the same name though, there's not a defined winner.)
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index c1263c782..97cb3b8fb 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -877,7 +877,7 @@ class Notice extends Memcached_DataObject foreach (array_unique($match[1]) as $nickname) { /* XXX: remote groups. */ - $group = User_group::getForNickname($nickname); + $group = User_group::getForNickname($nickname, $profile); if (empty($group)) { continue; |