mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
reverting to old case sensitive username behavior. As sdague pointed out,we are moving away from db4o to sql, and this won't work.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user