From d0fb5e8c902d5a4e2888fde313c9394617cac6dc Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sun, 13 Jul 2008 18:57:13 +0000 Subject: Mantis#1638. Thank you kindly, Salahzar for a patch that: Addresses an unused field in the asset server but never get filled up. It also makes working the recent items tab in inventory :)))) --- OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'OpenSim/Region/ClientStack/LindenUDP') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index fa3d9e1..e8a54bf 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs @@ -1762,6 +1762,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP InventoryReply.InventoryData[0].Flags = Item.Flags; InventoryReply.InventoryData[0].SalePrice = Item.SalePrice; InventoryReply.InventoryData[0].SaleType = Item.SaleType; + InventoryReply.InventoryData[0].CreationDate = Item.CreationDate; InventoryReply.InventoryData[0].CRC = Helpers.InventoryCRC(1000, 0, InventoryReply.InventoryData[0].InvType, @@ -5288,7 +5289,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP createItem.InventoryBlock.InvType, createItem.InventoryBlock.Type, createItem.InventoryBlock.WearableType, - createItem.InventoryBlock.NextOwnerMask); + createItem.InventoryBlock.NextOwnerMask, + Util.UnixTimeSinceEpoch()); } break; case PacketType.FetchInventory: -- cgit v1.1