aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Data/SQLite/SQLiteInventoryStore.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
index 27d1605..97c40ba 100644
--- a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
+++ b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
@@ -188,7 +188,7 @@ namespace OpenSim.Data.SQLite
188 row["invType"] = item.InvType; 188 row["invType"] = item.InvType;
189 row["parentFolderID"] = item.Folder.ToString(); 189 row["parentFolderID"] = item.Folder.ToString();
190 row["avatarID"] = item.Owner.ToString(); 190 row["avatarID"] = item.Owner.ToString();
191 row["creatorsID"] = item.CreatorId; 191 row["creatorsID"] = item.CreatorId.ToString();
192 row["inventoryName"] = item.Name; 192 row["inventoryName"] = item.Name;
193 row["inventoryDescription"] = item.Description; 193 row["inventoryDescription"] = item.Description;
194 194
@@ -202,7 +202,7 @@ namespace OpenSim.Data.SQLite
202 row["salePrice"] = item.SalePrice; 202 row["salePrice"] = item.SalePrice;
203 row["saleType"] = item.SaleType; 203 row["saleType"] = item.SaleType;
204 row["creationDate"] = item.CreationDate; 204 row["creationDate"] = item.CreationDate;
205 row["groupID"] = item.GroupID; 205 row["groupID"] = item.GroupID.ToString();
206 row["groupOwned"] = item.GroupOwned; 206 row["groupOwned"] = item.GroupOwned;
207 row["flags"] = item.Flags; 207 row["flags"] = item.Flags;
208 } 208 }