reverting to old case sensitive username behavior. As sdague pointed out,we are moving away from db4o to sql, and this won't work.

afrisby
Brian McBee 2007-08-28 01:57:38 +00:00
parent a415472ae3
commit f41f6daa57
1 changed files with 1 additions and 1 deletions

View File

@ -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;