diff options
author | Chris Hart | 2012-03-04 16:46:54 -0500 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-03-06 00:27:49 +0000 |
commit | 413bc1e77e07f586f418b14f47fc72ac5b803fa0 (patch) | |
tree | 1cb29f2835a0f400e348493190d2f10964763c6a /OpenSim/Data/MSSQL/MSSQLInventoryData.cs | |
parent | Add WebProfiles config to other config example (diff) | |
download | opensim-SC-413bc1e77e07f586f418b14f47fc72ac5b803fa0.zip opensim-SC-413bc1e77e07f586f418b14f47fc72ac5b803fa0.tar.gz opensim-SC-413bc1e77e07f586f418b14f47fc72ac5b803fa0.tar.bz2 opensim-SC-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/MSSQLInventoryData.cs | 2 |
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 | ||