diff options
author | leyla <leyla@leyla.com> | 2010-06-02 11:23:02 -0700 |
---|---|---|
committer | leyla <leyla@leyla.com> | 2010-06-02 11:23:02 -0700 |
commit | bc7837a697bb1b9dac3bef9019dac1fcce2ffa0a (patch) | |
tree | dcd2f70c8ce4e926cd08f80babbb077f1ce0535c /indra/newview/llpanelgrouproles.cpp | |
parent | 010dba68ad923cf66b1e05e6969a21f7288fe78a (diff) |
notification fixes
Diffstat (limited to 'indra/newview/llpanelgrouproles.cpp')
-rw-r--r-- | indra/newview/llpanelgrouproles.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/indra/newview/llpanelgrouproles.cpp b/indra/newview/llpanelgrouproles.cpp index 7dec2251e8..b06eedfcca 100644 --- a/indra/newview/llpanelgrouproles.cpp +++ b/indra/newview/llpanelgrouproles.cpp @@ -1113,11 +1113,7 @@ void LLPanelGroupMembersSubTab::sendEjectNotifications(const LLUUID& group_id, c for (uuid_vec_t::const_iterator i = selected_members.begin(); i != selected_members.end(); ++i) { LLSD args; - std::string name; - - gCacheName->getFullName(*i, name); - - args["AVATAR_NAME"] = name; + args["AVATAR_NAME"] = LLSLURL("agent", *i, "displayname").getSLURLString(); args["GROUP_NAME"] = group_data->mName; LLNotifications::instance().add(LLNotification::Params("EjectAvatarFromGroup").substitutions(args)); |