aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorMarck2010-08-15 21:08:37 +0200
committerDiva Canto2010-08-15 17:30:03 -0700
commitc1a20c8567d540028f87174e463668cb2a4e7a7b (patch)
treea46c5ddf6672a56b3b839f169c731f028ccdfd1a /OpenSim/Data
parentThanks Marck for the patch to mantis #4941 (shortening avies' names on HG) (diff)
downloadopensim-SC_OLD-c1a20c8567d540028f87174e463668cb2a4e7a7b.zip
opensim-SC_OLD-c1a20c8567d540028f87174e463668cb2a4e7a7b.tar.gz
opensim-SC_OLD-c1a20c8567d540028f87174e463668cb2a4e7a7b.tar.bz2
opensim-SC_OLD-c1a20c8567d540028f87174e463668cb2a4e7a7b.tar.xz
Fix SQLite database plugin for UserAccountData queries with a single word.
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/SQLite/SQLiteUserAccountData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteUserAccountData.cs b/OpenSim/Data/SQLite/SQLiteUserAccountData.cs
index 893f105..2706aea 100644
--- a/OpenSim/Data/SQLite/SQLiteUserAccountData.cs
+++ b/OpenSim/Data/SQLite/SQLiteUserAccountData.cs
@@ -66,7 +66,7 @@ namespace OpenSim.Data.SQLite
66 66
67 if (words.Length == 1) 67 if (words.Length == 1)
68 { 68 {
69 cmd.CommandText = String.Format("select * from {0} where ScopeID='{1}' or ScopeID='00000000-0000-0000-0000-000000000000') and (FirstName like '{2}%' or LastName like '{2}%')", 69 cmd.CommandText = String.Format("select * from {0} where (ScopeID='{1}' or ScopeID='00000000-0000-0000-0000-000000000000') and (FirstName like '{2}%' or LastName like '{2}%')",
70 m_Realm, scopeID.ToString(), words[0]); 70 m_Realm, scopeID.ToString(), words[0]);
71 } 71 }
72 else 72 else