diff options
Diffstat (limited to 'OpenSim/Framework/Data.MySQL/MySQLUserData.cs')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/MySQLUserData.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Data.MySQL/MySQLUserData.cs b/OpenSim/Framework/Data.MySQL/MySQLUserData.cs index 76ad551..f637db6 100644 --- a/OpenSim/Framework/Data.MySQL/MySQLUserData.cs +++ b/OpenSim/Framework/Data.MySQL/MySQLUserData.cs | |||
@@ -347,8 +347,8 @@ namespace OpenSim.Framework.Data.MySQL | |||
347 | if (querysplit.Length == 2) | 347 | if (querysplit.Length == 2) |
348 | { | 348 | { |
349 | Dictionary<string, string> param = new Dictionary<string, string>(); | 349 | Dictionary<string, string> param = new Dictionary<string, string>(); |
350 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], "") + "%"; | 350 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], String.Empty) + "%"; |
351 | param["?second"] = objAlphaNumericPattern.Replace(querysplit[1], "") + "%"; | 351 | param["?second"] = objAlphaNumericPattern.Replace(querysplit[1], String.Empty) + "%"; |
352 | try | 352 | try |
353 | { | 353 | { |
354 | lock (database) | 354 | lock (database) |
@@ -386,7 +386,7 @@ namespace OpenSim.Framework.Data.MySQL | |||
386 | lock (database) | 386 | lock (database) |
387 | { | 387 | { |
388 | Dictionary<string, string> param = new Dictionary<string, string>(); | 388 | Dictionary<string, string> param = new Dictionary<string, string>(); |
389 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], "") + "%"; | 389 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], String.Empty) + "%"; |
390 | 390 | ||
391 | IDbCommand result = | 391 | IDbCommand result = |
392 | database.Query( | 392 | database.Query( |