aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/MSSQLFriendsData.cs
diff options
context:
space:
mode:
authorChris Hart2012-03-04 16:46:54 -0500
committerJustin Clark-Casey (justincc)2012-03-06 00:27:49 +0000
commit413bc1e77e07f586f418b14f47fc72ac5b803fa0 (patch)
tree1cb29f2835a0f400e348493190d2f10964763c6a /OpenSim/Data/MSSQL/MSSQLFriendsData.cs
parentAdd WebProfiles config to other config example (diff)
downloadopensim-SC_OLD-413bc1e77e07f586f418b14f47fc72ac5b803fa0.zip
opensim-SC_OLD-413bc1e77e07f586f418b14f47fc72ac5b803fa0.tar.gz
opensim-SC_OLD-413bc1e77e07f586f418b14f47fc72ac5b803fa0.tar.bz2
opensim-SC_OLD-413bc1e77e07f586f418b14f47fc72ac5b803fa0.tar.xz
Updates to MSSQL store for 0.7.3 to include:
* Telehub support * Bugfix to Friends lookups * Updates to Creator fields to store up to 255 characters for HG item creator storage
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MSSQL/MSSQLFriendsData.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLFriendsData.cs b/OpenSim/Data/MSSQL/MSSQLFriendsData.cs
index 09dde5e..fef6978 100644
--- a/OpenSim/Data/MSSQL/MSSQLFriendsData.cs
+++ b/OpenSim/Data/MSSQL/MSSQLFriendsData.cs
@@ -89,5 +89,11 @@ namespace OpenSim.Data.MSSQL
89 return DoQuery(cmd); 89 return DoQuery(cmd);
90 } 90 }
91 } 91 }
92
93 public FriendsData[] GetFriends(Guid principalID)
94 {
95 return GetFriends(principalID.ToString());
96 }
97
92 } 98 }
93} 99}