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 /lib | |
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 'lib')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index add1b0ae6..46be920fa 100644 --- a/lib/util.php +++ b/lib/util.php @@ -853,7 +853,7 @@ function common_valid_profile_tag($str) function common_group_link($sender_id, $nickname) { $sender = Profile::staticGet($sender_id); - $group = User_group::getForNickname($nickname); + $group = User_group::getForNickname($nickname, $sender); if ($sender && $group && $sender->isMember($group)) { $attrs = array('href' => $group->permalink(), 'class' => 'url'); |