diff options
author | Diva Canto | 2013-07-02 15:47:02 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-02 15:47:02 -0700 |
commit | 2c05caec7fcf14c7e61c2f66854fc24f06d5b480 (patch) | |
tree | d755c57adf59a0ce86bba45c7173352b8ed7c0e4 /OpenSim | |
parent | More debug messages (diff) | |
download | opensim-SC_OLD-2c05caec7fcf14c7e61c2f66854fc24f06d5b480.zip opensim-SC_OLD-2c05caec7fcf14c7e61c2f66854fc24f06d5b480.tar.gz opensim-SC_OLD-2c05caec7fcf14c7e61c2f66854fc24f06d5b480.tar.bz2 opensim-SC_OLD-2c05caec7fcf14c7e61c2f66854fc24f06d5b480.tar.xz |
Really make it call the method with the query interface
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLGridUserData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLGridUserData.cs b/OpenSim/Data/MySQL/MySQLGridUserData.cs index df1ecc6..f476fd2 100644 --- a/OpenSim/Data/MySQL/MySQLGridUserData.cs +++ b/OpenSim/Data/MySQL/MySQLGridUserData.cs | |||
@@ -58,7 +58,7 @@ namespace OpenSim.Data.MySQL | |||
58 | 58 | ||
59 | public GridUserData[] GetAll(string userID) | 59 | public GridUserData[] GetAll(string userID) |
60 | { | 60 | { |
61 | return base.Get("UserID LIKE {0}%", userID); | 61 | return base.Get(String.Format("UserID LIKE {0}%", userID)); |
62 | } | 62 | } |
63 | } | 63 | } |
64 | } \ No newline at end of file | 64 | } \ No newline at end of file |