diff options
author | Baker Linden <baker@lindenlab.com> | 2014-05-01 13:44:46 -0700 |
---|---|---|
committer | Baker Linden <baker@lindenlab.com> | 2014-05-01 13:44:46 -0700 |
commit | 2641a105f644060ef1b63f8302b937af68fd8cd5 (patch) | |
tree | 7874aadd547674be888cf6cffd2dc8a725b00477 /indra/newview/llpanelgroupbulkban.cpp | |
parent | c1e27a8dec915d0e42382e7d5a7b52ea542c7ee1 (diff) |
[MAINT-3441] [MAINT-3991] [MAINT-3985] [MAINT-3420]
- Removed an ejection notification.
Diffstat (limited to 'indra/newview/llpanelgroupbulkban.cpp')
-rw-r--r-- | indra/newview/llpanelgroupbulkban.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/indra/newview/llpanelgroupbulkban.cpp b/indra/newview/llpanelgroupbulkban.cpp index 6518137649..5b9dc21f20 100644 --- a/indra/newview/llpanelgroupbulkban.cpp +++ b/indra/newview/llpanelgroupbulkban.cpp @@ -138,20 +138,6 @@ void LLPanelGroupBulkBan::submit() LLGroupMgr::getInstance()->sendGroupBanRequest(LLGroupMgr::REQUEST_POST, mImplementation->mGroupID, LLGroupMgr::BAN_CREATE, banned_agent_list); LLGroupMgr::getInstance()->sendGroupMemberEjects(mImplementation->mGroupID, banned_agent_list); - - // Viewer notification - LLGroupMgrGroupData* group_data = LLGroupMgr::getInstance()->getGroupData(mImplementation->mGroupID); - if (group_data) - { - for (uuid_vec_t::const_iterator i = banned_agent_list.begin(); i != banned_agent_list.end(); ++i) - { - LLSD args; - args["AVATAR_NAME"] = LLSLURL("agent", *i, "displayname").getSLURLString(); - args["GROUP_NAME"] = group_data->mName; - - LLNotifications::instance().add(LLNotification::Params("EjectAvatarFromGroup").substitutions(args)); - } - } //then close (*(mImplementation->mCloseCallback))(mImplementation->mCloseCallbackUserData); |