mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Avatar login names are no longer case sensitive
This commit is contained in:
@@ -82,7 +82,7 @@ namespace OpenSim.Framework.Data.DB4o
|
||||
{
|
||||
foreach (UserProfileData profile in manager.userProfiles.Values)
|
||||
{
|
||||
if (profile.username == fname && profile.surname == lname)
|
||||
if (profile.username.ToUpper() == fname.ToUpper() && profile.surname.ToUpper() == lname.ToUpper())
|
||||
return profile;
|
||||
}
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user