diff options
author | Brian McBee | 2007-08-28 01:57:38 +0000 |
---|---|---|
committer | Brian McBee | 2007-08-28 01:57:38 +0000 |
commit | f41f6daa5750b6c16ffe8239e6011e80c054d299 (patch) | |
tree | b43b0912964b6992b7fdceaa204d746687b54b04 /OpenSim/Framework/Data.DB4o | |
parent | Avatar login names are no longer case sensitive (diff) | |
download | opensim-SC_OLD-f41f6daa5750b6c16ffe8239e6011e80c054d299.zip opensim-SC_OLD-f41f6daa5750b6c16ffe8239e6011e80c054d299.tar.gz opensim-SC_OLD-f41f6daa5750b6c16ffe8239e6011e80c054d299.tar.bz2 opensim-SC_OLD-f41f6daa5750b6c16ffe8239e6011e80c054d299.tar.xz |
reverting to old case sensitive username behavior. As sdague pointed out,we are moving away from db4o to sql, and this won't work.
Diffstat (limited to 'OpenSim/Framework/Data.DB4o')
-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 d1f47ae..ef4211e 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.ToUpper() == fname.ToUpper() && profile.surname.ToUpper() == lname.ToUpper()) | 85 | if (profile.username == fname && profile.surname == lname) |
86 | return profile; | 86 | return profile; |
87 | } | 87 | } |
88 | return null; | 88 | return null; |