diff options
author | Brian McBee | 2007-08-28 01:16:33 +0000 |
---|---|---|
committer | Brian McBee | 2007-08-28 01:16:33 +0000 |
commit | a415472ae32869a655dbdfef108573e424e0443a (patch) | |
tree | d19058fee7dfcfc2e5dba3e8e6957dbf0598ca81 /OpenSim | |
parent | first pass implementation of sqlite storage for user data. This (diff) | |
download | opensim-SC_OLD-a415472ae32869a655dbdfef108573e424e0443a.zip opensim-SC_OLD-a415472ae32869a655dbdfef108573e424e0443a.tar.gz opensim-SC_OLD-a415472ae32869a655dbdfef108573e424e0443a.tar.bz2 opensim-SC_OLD-a415472ae32869a655dbdfef108573e424e0443a.tar.xz |
Avatar login names are no longer case sensitive
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Data.DB4o/DB4oUserData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Data.DB4o/DB4oUserData.cs b/OpenSim/Framework/Data.DB4o/DB4oUserData.cs index ef4211e..d1f47ae 100644 --- a/OpenSim/Framework/Data.DB4o/DB4oUserData.cs +++ b/OpenSim/Framework/Data.DB4o/DB4oUserData.cs | |||
@@ -82,7 +82,7 @@ namespace OpenSim.Framework.Data.DB4o | |||
82 | { | 82 | { |
83 | foreach (UserProfileData profile in manager.userProfiles.Values) | 83 | foreach (UserProfileData profile in manager.userProfiles.Values) |
84 | { | 84 | { |
85 | if (profile.username == fname && profile.surname == lname) | 85 | if (profile.username.ToUpper() == fname.ToUpper() && profile.surname.ToUpper() == lname.ToUpper()) |
86 | return profile; | 86 | return profile; |
87 | } | 87 | } |
88 | return null; | 88 | return null; |