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/Framework/Communications | |
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 '')
-rw-r--r-- | OpenSim/Framework/Communications/Capabilities/Caps.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs index b4a0473..c83c2a6 100644 --- a/OpenSim/Framework/Communications/Capabilities/Caps.cs +++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs | |||
@@ -397,7 +397,7 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
397 | { | 397 | { |
398 | LLSDInventoryItem llsdItem = new LLSDInventoryItem(); | 398 | LLSDInventoryItem llsdItem = new LLSDInventoryItem(); |
399 | llsdItem.asset_id = invItem.AssetID; | 399 | llsdItem.asset_id = invItem.AssetID; |
400 | llsdItem.created_at = 1000; | 400 | llsdItem.created_at = invItem.CreationDate; |
401 | llsdItem.desc = invItem.Description; | 401 | llsdItem.desc = invItem.Description; |
402 | llsdItem.flags = 0; | 402 | llsdItem.flags = 0; |
403 | llsdItem.item_id = invItem.ID; | 403 | llsdItem.item_id = invItem.ID; |