diff options
author | Justin Clarke Casey | 2008-03-28 19:35:01 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-03-28 19:35:01 +0000 |
commit | 0a47a75b8894942e43a132c8479b1b17e7d4e8b5 (patch) | |
tree | 34de4749fe3a83f2335667aabf58537845ecab00 /OpenSim/Framework/Data.MySQL/MySQLInventoryData.cs | |
parent | * Refactor: Eliminate RequestUsersRoot() redundant method (diff) | |
download | opensim-SC-0a47a75b8894942e43a132c8479b1b17e7d4e8b5.zip opensim-SC-0a47a75b8894942e43a132c8479b1b17e7d4e8b5.tar.gz opensim-SC-0a47a75b8894942e43a132c8479b1b17e7d4e8b5.tar.bz2 opensim-SC-0a47a75b8894942e43a132c8479b1b17e7d4e8b5.tar.xz |
* Send full inventory folder skeleton to standalone client logins rather than just the root child folders
* This may resolve some current problems with non root child folders on standalone installations.
* A fix for the same problem in grid mode will come soon.
Diffstat (limited to 'OpenSim/Framework/Data.MySQL/MySQLInventoryData.cs')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/MySQLInventoryData.cs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/OpenSim/Framework/Data.MySQL/MySQLInventoryData.cs b/OpenSim/Framework/Data.MySQL/MySQLInventoryData.cs index d6dabfe..4165d8f 100644 --- a/OpenSim/Framework/Data.MySQL/MySQLInventoryData.cs +++ b/OpenSim/Framework/Data.MySQL/MySQLInventoryData.cs | |||
@@ -573,12 +573,8 @@ namespace OpenSim.Framework.Data.MySQL | |||
573 | folders.Add(f); | 573 | folders.Add(f); |
574 | } | 574 | } |
575 | 575 | ||
576 | /// <summary> | 576 | // See IInventoryData |
577 | /// Returns all child folders in the hierarchy from the parent folder and down | 577 | public List<InventoryFolderBase> getFolderHierarchy(LLUUID parentID) |
578 | /// </summary> | ||
579 | /// <param name="parentID">The folder to get subfolders for</param> | ||
580 | /// <returns>A list of inventory folders</returns> | ||
581 | protected List<InventoryFolderBase> getFolderHierarchy(LLUUID parentID) | ||
582 | { | 578 | { |
583 | List<InventoryFolderBase> folders = new List<InventoryFolderBase>(); | 579 | List<InventoryFolderBase> folders = new List<InventoryFolderBase>(); |
584 | getInventoryFolders(ref folders, parentID); | 580 | getInventoryFolders(ref folders, parentID); |