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
This commit is contained in:
Chris Hart
2012-03-04 16:46:54 -05:00
committed by Justin Clark-Casey (justincc)
parent ac934e2dbb
commit 413bc1e77e
4 changed files with 169 additions and 7 deletions

View File

@@ -813,7 +813,7 @@ namespace OpenSim.Data.MSSQL
{
try
{
using (SqlCommand command = new SqlCommand("DELETE FROM inventoryfolders WHERE folderID=@folderID", connection))
using (SqlCommand command = new SqlCommand("DELETE FROM inventoryfolders WHERE folderID=@folderID and type=-1", connection))
{
command.Parameters.Add(database.CreateParameter("folderID", folderID));