diff options
author | Melanie | 2010-11-22 23:31:29 +0100 |
---|---|---|
committer | Melanie | 2010-11-22 23:31:29 +0100 |
commit | 571becefb652869fa844188cadf8aca1fea774ab (patch) | |
tree | 1768fee146ca42ba24b7576fb4db134ca2185e38 /OpenSim/Framework/Capabilities | |
parent | Make an invalud key string in llTextBox and llDialog non fatal to avoid (diff) | |
download | opensim-SC-571becefb652869fa844188cadf8aca1fea774ab.zip opensim-SC-571becefb652869fa844188cadf8aca1fea774ab.tar.gz opensim-SC-571becefb652869fa844188cadf8aca1fea774ab.tar.bz2 opensim-SC-571becefb652869fa844188cadf8aca1fea774ab.tar.xz |
Fix some crashes caused by the addition of the CreatorData column
Diffstat (limited to 'OpenSim/Framework/Capabilities')
-rw-r--r-- | OpenSim/Framework/Capabilities/Caps.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/Capabilities/Caps.cs b/OpenSim/Framework/Capabilities/Caps.cs index 7b0e053..e7f2e13 100644 --- a/OpenSim/Framework/Capabilities/Caps.cs +++ b/OpenSim/Framework/Capabilities/Caps.cs | |||
@@ -967,6 +967,7 @@ namespace OpenSim.Framework.Capabilities | |||
967 | InventoryItemBase item = new InventoryItemBase(); | 967 | InventoryItemBase item = new InventoryItemBase(); |
968 | item.Owner = m_agentID; | 968 | item.Owner = m_agentID; |
969 | item.CreatorId = m_agentID.ToString(); | 969 | item.CreatorId = m_agentID.ToString(); |
970 | item.CreatorData = String.Empty; | ||
970 | item.ID = inventoryItem; | 971 | item.ID = inventoryItem; |
971 | item.AssetID = asset.FullID; | 972 | item.AssetID = asset.FullID; |
972 | item.Description = assetDescription; | 973 | item.Description = assetDescription; |