diff options
| author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-02-20 11:20:03 +0200 | 
|---|---|---|
| committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-02-20 11:20:03 +0200 | 
| commit | 094c13d63b1fb210c6fc702600b89e695169a24d (patch) | |
| tree | ec1a81d82739c193829535a6421ccefcafe61766 | |
| parent | 58cb66135257487ccbca693215f8c1d72576deeb (diff) | |
MAINT-7142 Use '/completename' in teleport offer and eject messages
| -rw-r--r-- | indra/newview/llpanelgrouproles.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewermessage.cpp | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpanelgrouproles.cpp b/indra/newview/llpanelgrouproles.cpp index 00c204e702..6ac439177a 100644 --- a/indra/newview/llpanelgrouproles.cpp +++ b/indra/newview/llpanelgrouproles.cpp @@ -1231,7 +1231,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; -			args["AVATAR_NAME"] = LLSLURL("agent", *i, "displayname").getSLURLString(); +			args["AVATAR_NAME"] = LLSLURL("agent", *i, "completename").getSLURLString();  			args["GROUP_NAME"] = group_data->mName;  			LLNotifications::instance().add(LLNotification::Params("EjectAvatarFromGroup").substitutions(args)); diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 579eacc315..8076c6b1df 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -7034,7 +7034,7 @@ void send_lures(const LLSD& notification, const LLSD& response)  			std::string target_name;  			gCacheName->getFullName(target_id, target_name);  // for im log filenames  			LLSD args; -			args["TO_NAME"] = LLSLURL("agent", target_id, "displayname").getSLURLString();; +			args["TO_NAME"] = LLSLURL("agent", target_id, "completename").getSLURLString();;  			LLSD payload;  | 
