Revert "In GetDisplayNames, if user last name is Resident then only send first name for display."

Reverting at this point since it may not work well with all viewers.
Requires further investigation.

This reverts commit a29d53986a.
0.8.1-post-fixes
Justin Clark-Casey (justincc) 2015-01-24 00:51:45 +00:00
parent a29d53986a
commit 3289aa3bcd
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ namespace OpenSim.Capabilities.Handlers
OSDMap osdname = new OSDMap();
osdname["display_name_next_update"] = OSD.FromDate(DateTime.MinValue);
osdname["display_name_expires"] = OSD.FromDate(DateTime.Now.AddMonths(1));
osdname["display_name"] = parts[1] != "Resident" ? OSD.FromString(name) : OSD.FromString(parts[0]);
osdname["display_name"] = OSD.FromString(name);
osdname["legacy_first_name"] = parts[0];
osdname["legacy_last_name"] = parts[1];
osdname["username"] = "";