Change default destination of deleted items to the trash folder. Everything
else still goes to L&Fmysql-performance
parent
d2c1610d17
commit
5ee79c62bf
|
@ -1722,10 +1722,19 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
if (folderID == UUID.Zero && folder == null)
|
if (folderID == UUID.Zero && folder == null)
|
||||||
{
|
{
|
||||||
// Catch all. Use lost & found
|
if (action == DeRezAction.Delete)
|
||||||
//
|
{
|
||||||
|
// Deletes go to trash by default
|
||||||
|
//
|
||||||
|
folder = InventoryService.GetFolderForType(userID, AssetType.TrashFolder);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// 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
|
||||||
|
|
Loading…
Reference in New Issue