diff options
author | Melanie Thielker | 2009-03-22 20:05:11 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-03-22 20:05:11 +0000 |
commit | f86c13f48e957b96f0599e3ce8869f2571abd578 (patch) | |
tree | a2a242cbf8dd1046c99694698a70dc66699cf76c | |
parent | Make offline gives work in SQLite standalones (diff) | |
download | opensim-SC_OLD-f86c13f48e957b96f0599e3ce8869f2571abd578.zip opensim-SC_OLD-f86c13f48e957b96f0599e3ce8869f2571abd578.tar.gz opensim-SC_OLD-f86c13f48e957b96f0599e3ce8869f2571abd578.tar.bz2 opensim-SC_OLD-f86c13f48e957b96f0599e3ce8869f2571abd578.tar.xz |
Send proper creation date on item gives, so objects will appear at the top of
"Objects", not at the bottom
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index ace09f0..e69f373 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -2097,7 +2097,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2097 | bulkUpdate.ItemData[0].AssetID = item.AssetID; | 2097 | bulkUpdate.ItemData[0].AssetID = item.AssetID; |
2098 | bulkUpdate.ItemData[0].CreatorID = item.Creator; | 2098 | bulkUpdate.ItemData[0].CreatorID = item.Creator; |
2099 | bulkUpdate.ItemData[0].BaseMask = item.BasePermissions; | 2099 | bulkUpdate.ItemData[0].BaseMask = item.BasePermissions; |
2100 | bulkUpdate.ItemData[0].CreationDate = 1000; | 2100 | bulkUpdate.ItemData[0].CreationDate = item.CreationDate; |
2101 | bulkUpdate.ItemData[0].Description = LLUtil.StringToPacketBytes(item.Description); | 2101 | bulkUpdate.ItemData[0].Description = LLUtil.StringToPacketBytes(item.Description); |
2102 | bulkUpdate.ItemData[0].EveryoneMask = item.EveryOnePermissions; | 2102 | bulkUpdate.ItemData[0].EveryoneMask = item.EveryOnePermissions; |
2103 | bulkUpdate.ItemData[0].FolderID = item.Folder; | 2103 | bulkUpdate.ItemData[0].FolderID = item.Folder; |