aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/MSSQLInventoryData.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/MSSQLInventoryData.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 'OpenSim/Data/MSSQL/MSSQLInventoryData.cs')
-rw-r--r--OpenSim/Data/MSSQL/MSSQLInventoryData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLInventoryData.cs b/OpenSim/Data/MSSQL/MSSQLInventoryData.cs
index 4d06377..961593f 100644
--- a/OpenSim/Data/MSSQL/MSSQLInventoryData.cs
+++ b/OpenSim/Data/MSSQL/MSSQLInventoryData.cs
@@ -813,7 +813,7 @@ namespace OpenSim.Data.MSSQL
813 { 813 {
814 try 814 try
815 { 815 {
816 using (SqlCommand command = new SqlCommand("DELETE FROM inventoryfolders WHERE folderID=@folderID", connection)) 816 using (SqlCommand command = new SqlCommand("DELETE FROM inventoryfolders WHERE folderID=@folderID and type=-1", connection))
817 { 817 {
818 command.Parameters.Add(database.CreateParameter("folderID", folderID)); 818 command.Parameters.Add(database.CreateParameter("folderID", folderID));
819 819