diff options
author | Homer Horwitz | 2008-10-09 22:45:28 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-10-09 22:45:28 +0000 |
commit | 8178f7809594048018325ad4d7767423efa2637f (patch) | |
tree | 5fbc916f1421dbec04712a6923fa8cb53f19974f | |
parent | * Apply http://opensimulator.org/mantis/view.php?id=2373 (diff) | |
download | opensim-SC_OLD-8178f7809594048018325ad4d7767423efa2637f.zip opensim-SC_OLD-8178f7809594048018325ad4d7767423efa2637f.tar.gz opensim-SC_OLD-8178f7809594048018325ad4d7767423efa2637f.tar.bz2 opensim-SC_OLD-8178f7809594048018325ad4d7767423efa2637f.tar.xz |
Fixed renaming of in-prim items (Mantis #2366)
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.Inventory.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs index eb21221..a9aaf4d 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs | |||
@@ -1275,7 +1275,9 @@ namespace OpenSim.Region.Environment.Scenes | |||
1275 | { | 1275 | { |
1276 | agentTransactions.HandleTaskItemUpdateFromTransaction( | 1276 | agentTransactions.HandleTaskItemUpdateFromTransaction( |
1277 | remoteClient, part, transactionID, currentItem); | 1277 | remoteClient, part, transactionID, currentItem); |
1278 | } | 1278 | } |
1279 | if (part.UpdateInventoryItem(itemInfo)) | ||
1280 | part.GetProperties(remoteClient); | ||
1279 | } | 1281 | } |
1280 | } | 1282 | } |
1281 | else | 1283 | else |