reverting to old case sensitive username behavior. As sdague pointed out,we are moving away from db4o to sql, and this won't work.
parent
a415472ae3
commit
f41f6daa57
|
@ -82,7 +82,7 @@ namespace OpenSim.Framework.Data.DB4o
|
|||
{
|
||||
foreach (UserProfileData profile in manager.userProfiles.Values)
|
||||
{
|
||||
if (profile.username.ToUpper() == fname.ToUpper() && profile.surname.ToUpper() == lname.ToUpper())
|
||||
if (profile.username == fname && profile.surname == lname)
|
||||
return profile;
|
||||
}
|
||||
return null;
|
||||
|
|
Loading…
Reference in New Issue