Change default destination of deleted items to the trash folder. Everything

else still goes to L&F
mysql-performance
Melanie 2009-12-02 10:21:24 +00:00
parent d2c1610d17
commit 5ee79c62bf
1 changed files with 12 additions and 3 deletions

View File

@ -1721,12 +1721,21 @@ namespace OpenSim.Region.Framework.Scenes
} }
if (folderID == UUID.Zero && folder == null) if (folderID == UUID.Zero && folder == null)
{
if (action == DeRezAction.Delete)
{
// Deletes go to trash by default
//
folder = InventoryService.GetFolderForType(userID, AssetType.TrashFolder);
}
else
{ {
// Catch all. Use lost & found // Catch all. Use lost & found
// //
folder = InventoryService.GetFolderForType(userID, AssetType.LostAndFoundFolder); folder = InventoryService.GetFolderForType(userID, AssetType.LostAndFoundFolder);
} }
}
if (folder == null) // None of the above if (folder == null) // None of the above
{ {