Fix for typo in updateInventoryItem in MSSQLInventoryData.cs (thanks Grumly!)

afrisby
Brian McBee 2008-01-05 20:12:43 +00:00
parent 089af4903a
commit 79c2892303
1 changed files with 1 additions and 1 deletions

View File

@ -475,7 +475,7 @@ namespace OpenSim.Framework.Data.MSSQL
"creatorID = @creatorID" +
"inventoryBasePermissions = @inventoryBasePermissions" +
"inventoryEveryOnePermissions = @inventoryEveryOnePermissions) where " +
"invenoryID = @keyInventoryID;", database.getConnection());
"inventoryID = @keyInventoryID;", database.getConnection());
SqlParameter param1 = new SqlParameter("@inventoryID", item.inventoryID.ToString());
SqlParameter param2 = new SqlParameter("@assetID", item.assetID);
SqlParameter param3 = new SqlParameter("@assetType", item.assetType);