diff options
author | Brian McBee | 2008-01-05 20:12:43 +0000 |
---|---|---|
committer | Brian McBee | 2008-01-05 20:12:43 +0000 |
commit | 79c2892303bbb0da9704fe37dc2784bacf827980 (patch) | |
tree | 227211d2754bf2438cfe3f61f24563d4e8d7f1bf | |
parent | Checked in my own Mono.Addins.dll by mistake. Here is correction. (diff) | |
download | opensim-SC_OLD-79c2892303bbb0da9704fe37dc2784bacf827980.zip opensim-SC_OLD-79c2892303bbb0da9704fe37dc2784bacf827980.tar.gz opensim-SC_OLD-79c2892303bbb0da9704fe37dc2784bacf827980.tar.bz2 opensim-SC_OLD-79c2892303bbb0da9704fe37dc2784bacf827980.tar.xz |
Fix for typo in updateInventoryItem in MSSQLInventoryData.cs (thanks Grumly!)
-rw-r--r-- | OpenSim/Framework/Data.MSSQL/MSSQLInventoryData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Data.MSSQL/MSSQLInventoryData.cs b/OpenSim/Framework/Data.MSSQL/MSSQLInventoryData.cs index 4b2c7af..2e5d679 100644 --- a/OpenSim/Framework/Data.MSSQL/MSSQLInventoryData.cs +++ b/OpenSim/Framework/Data.MSSQL/MSSQLInventoryData.cs | |||
@@ -475,7 +475,7 @@ namespace OpenSim.Framework.Data.MSSQL | |||
475 | "creatorID = @creatorID" + | 475 | "creatorID = @creatorID" + |
476 | "inventoryBasePermissions = @inventoryBasePermissions" + | 476 | "inventoryBasePermissions = @inventoryBasePermissions" + |
477 | "inventoryEveryOnePermissions = @inventoryEveryOnePermissions) where " + | 477 | "inventoryEveryOnePermissions = @inventoryEveryOnePermissions) where " + |
478 | "invenoryID = @keyInventoryID;", database.getConnection()); | 478 | "inventoryID = @keyInventoryID;", database.getConnection()); |
479 | SqlParameter param1 = new SqlParameter("@inventoryID", item.inventoryID.ToString()); | 479 | SqlParameter param1 = new SqlParameter("@inventoryID", item.inventoryID.ToString()); |
480 | SqlParameter param2 = new SqlParameter("@assetID", item.assetID); | 480 | SqlParameter param2 = new SqlParameter("@assetID", item.assetID); |
481 | SqlParameter param3 = new SqlParameter("@assetType", item.assetType); | 481 | SqlParameter param3 = new SqlParameter("@assetType", item.assetType); |