diff options
author | Homer Horwitz | 2008-12-06 22:51:41 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-12-06 22:51:41 +0000 |
commit | 6ab09bc1391b5fa1429a01dcb00bdbf2fb507972 (patch) | |
tree | 3d567c26eae71fe0ff747025a701c799fecd9b15 /OpenSim/Region/ClientStack/LindenUDP | |
parent | And change OpenSim.ini.example back. Too many copies out there already to tak... (diff) | |
download | opensim-SC_OLD-6ab09bc1391b5fa1429a01dcb00bdbf2fb507972.zip opensim-SC_OLD-6ab09bc1391b5fa1429a01dcb00bdbf2fb507972.tar.gz opensim-SC_OLD-6ab09bc1391b5fa1429a01dcb00bdbf2fb507972.tar.bz2 opensim-SC_OLD-6ab09bc1391b5fa1429a01dcb00bdbf2fb507972.tar.xz |
Send the creation-date of items to the viewer. This fixes Mantis#2769.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index bca9b91..8aa70c9 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -1734,8 +1734,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1734 | inventoryReply.InventoryData[0].AssetID = item.AssetID; | 1734 | inventoryReply.InventoryData[0].AssetID = item.AssetID; |
1735 | inventoryReply.InventoryData[0].CreatorID = item.Creator; | 1735 | inventoryReply.InventoryData[0].CreatorID = item.Creator; |
1736 | inventoryReply.InventoryData[0].BaseMask = item.BasePermissions; | 1736 | inventoryReply.InventoryData[0].BaseMask = item.BasePermissions; |
1737 | inventoryReply.InventoryData[0].CreationDate = | 1737 | inventoryReply.InventoryData[0].CreationDate = item.CreationDate; |
1738 | (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds; | 1738 | |
1739 | inventoryReply.InventoryData[0].Description = Utils.StringToBytes(item.Description); | 1739 | inventoryReply.InventoryData[0].Description = Utils.StringToBytes(item.Description); |
1740 | inventoryReply.InventoryData[0].EveryoneMask = item.EveryOnePermissions; | 1740 | inventoryReply.InventoryData[0].EveryoneMask = item.EveryOnePermissions; |
1741 | inventoryReply.InventoryData[0].FolderID = item.Folder; | 1741 | inventoryReply.InventoryData[0].FolderID = item.Folder; |