summaryrefslogtreecommitdiff
path: root/indra/newview/llgroupmgr.cpp
diff options
context:
space:
mode:
authorBaker Linden <baker@lindenlab.com>2013-09-13 17:20:04 -0700
committerBaker Linden <baker@lindenlab.com>2013-09-13 17:20:04 -0700
commit34f561db55868185f0a946009f41f4f212366484 (patch)
treea6637f68a05acf87d0326bcf9d1a4013e852cc6f /indra/newview/llgroupmgr.cpp
parentbf34eccf9c68f204c41d3daea791e50e87d868db (diff)
- Added ban date to ban list ui
- Code cleanup
Diffstat (limited to 'indra/newview/llgroupmgr.cpp')
-rwxr-xr-xindra/newview/llgroupmgr.cpp17
1 files changed, 10 insertions, 7 deletions
diff --git a/indra/newview/llgroupmgr.cpp b/indra/newview/llgroupmgr.cpp
index 7cb53066ea..7e7098420d 100755
--- a/indra/newview/llgroupmgr.cpp
+++ b/indra/newview/llgroupmgr.cpp
@@ -1872,7 +1872,6 @@ void GroupBanDataResponder::errorWithContent(U32 pStatus, const std::string& pRe
void GroupBanDataResponder::result(const LLSD& content)
{
- LL_INFOS("GrpMgr") << "[BAKER] Received ban data!" << LL_ENDL;
LLGroupMgr::processGroupBanRequest(content);
}
@@ -1934,7 +1933,7 @@ void LLGroupMgr::processGroupBanRequest(const LLSD& content)
// Did we get anything in content?
if(!content.size())
{
- LL_DEBUGS("GrpMgr") << "No group member data received." << LL_ENDL;
+ LL_WARNS("GrpMgr") << "No group member data received." << LL_ENDL;
return;
}
@@ -1949,14 +1948,18 @@ void LLGroupMgr::processGroupBanRequest(const LLSD& content)
for(;i != iEnd; ++i)
{
const LLUUID ban_id(i->first);
- // We have nothing right now inside our banlist map.
- // Once ban_date is implemented, set that here!
- //
- gdatap->createBanEntry(ban_id, LLGroupBanData());
+ LLSD ban_entry(i->second);
+
+ LLGroupBanData ban_data;
+ if(ban_entry.has("ban_date"))
+ {
+ ban_data.mBanDate = ban_entry["ban_date"].asDate();
+ }
+
+ gdatap->createBanEntry(ban_id, ban_data);
}
gdatap->mChanged = TRUE;
-// gdatap->setGroupBanStatus(LLGroupMgrGroupData::STATUS_COMPLETE);
LLGroupMgr::getInstance()->notifyObservers(GC_BANLIST);
}