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 :))))
This commit is contained in:
Charles Krinke
2008-07-13 18:57:13 +00:00
parent 92cac0c6de
commit d0fb5e8c90
3 changed files with 25 additions and 10 deletions

View File

@@ -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: