summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelgroupnotices.cpp
diff options
context:
space:
mode:
authorLeyla Farazha <leyla@lindenlab.com>2010-05-27 15:12:03 -0700
committerLeyla Farazha <leyla@lindenlab.com>2010-05-27 15:12:03 -0700
commit6cb420b20bd509e7bf62c8450f12d433c5a81be2 (patch)
tree31f82be57c849e8ac6210b94704d781d0ee40c2f /indra/newview/llpanelgroupnotices.cpp
parentc5c13a92eb62e1e9927a9685d5433c040e6ef2ce (diff)
added function for building a username from a legacy name and fixed group notice panel
reviewed by James
Diffstat (limited to 'indra/newview/llpanelgroupnotices.cpp')
-rw-r--r--indra/newview/llpanelgroupnotices.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpanelgroupnotices.cpp b/indra/newview/llpanelgroupnotices.cpp
index 2a955004e9..b71ece2be3 100644
--- a/indra/newview/llpanelgroupnotices.cpp
+++ b/indra/newview/llpanelgroupnotices.cpp
@@ -548,8 +548,8 @@ void LLPanelGroupNotices::processNotices(LLMessageSystem* msg)
msg->getU8("Data","AssetType",asset_type,i);
msg->getU32("Data","Timestamp",timestamp,i);
- // IDEVO clean up legacy "Resident" names
- name = LLCacheName::cleanFullName(name);
+ // we only have the legacy name here, convert it to a username
+ name = LLCacheName::buildUsername(name);
LLSD row;
row["id"] = id;