aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IUserData.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-22 19:26:18 +0000
committerJustin Clarke Casey2009-04-22 19:26:18 +0000
commit4c806855636543eba0423bfca0ef2084d7d7a536 (patch)
tree7b22e9815b56e169d31d6a262da204411b24e315 /OpenSim/Data/IUserData.cs
parentadd if exists to the drop table (diff)
downloadopensim-SC_OLD-4c806855636543eba0423bfca0ef2084d7d7a536.zip
opensim-SC_OLD-4c806855636543eba0423bfca0ef2084d7d7a536.tar.gz
opensim-SC_OLD-4c806855636543eba0423bfca0ef2084d7d7a536.tar.bz2
opensim-SC_OLD-4c806855636543eba0423bfca0ef2084d7d7a536.tar.xz
* Allow plugins to play nicely in UserManagerBase
* Some methods were returning the value of the first plugin queried, even if the return was null * Other methods are probably best off querying more than one plugin and aggregating results
Diffstat (limited to 'OpenSim/Data/IUserData.cs')
-rw-r--r--OpenSim/Data/IUserData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/IUserData.cs b/OpenSim/Data/IUserData.cs
index 9ac923f..573355b 100644
--- a/OpenSim/Data/IUserData.cs
+++ b/OpenSim/Data/IUserData.cs
@@ -64,7 +64,7 @@ namespace OpenSim.Data
64 /// </summary> 64 /// </summary>
65 /// <param name="queryID">ID associated with the user's query. This must match what the client sent</param> 65 /// <param name="queryID">ID associated with the user's query. This must match what the client sent</param>
66 /// <param name="query">The filtered contents of the search box when the user hit search.</param> 66 /// <param name="query">The filtered contents of the search box when the user hit search.</param>
67 /// <returns>The user data profile</returns> 67 /// <returns>A list of user details. If there are no results than either an empty list or null can be returned</returns>
68 List<AvatarPickerAvatar> GeneratePickerResults(UUID queryID, string query); 68 List<AvatarPickerAvatar> GeneratePickerResults(UUID queryID, string query);
69 69
70 /// <summary> 70 /// <summary>