aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-03-28 19:35:01 +0000
committerJustin Clarke Casey2008-03-28 19:35:01 +0000
commit0a47a75b8894942e43a132c8479b1b17e7d4e8b5 (patch)
tree34de4749fe3a83f2335667aabf58537845ecab00 /OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
parent* Refactor: Eliminate RequestUsersRoot() redundant method (diff)
downloadopensim-SC_OLD-0a47a75b8894942e43a132c8479b1b17e7d4e8b5.zip
opensim-SC_OLD-0a47a75b8894942e43a132c8479b1b17e7d4e8b5.tar.gz
opensim-SC_OLD-0a47a75b8894942e43a132c8479b1b17e7d4e8b5.tar.bz2
opensim-SC_OLD-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.SQLite/SQLiteInventoryStore.cs')
-rw-r--r--OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
index 14a3e1a..d31863f 100644
--- a/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
+++ b/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs
@@ -319,12 +319,8 @@ namespace OpenSim.Framework.Data.SQLite
319 return folders; 319 return folders;
320 } 320 }
321 321
322 /// <summary> 322 // See IInventoryData
323 /// Returns all child folders in the hierarchy from the parent folder and down 323 public List<InventoryFolderBase> getFolderHierarchy(LLUUID parentID)
324 /// </summary>
325 /// <param name="parentID">The folder to get subfolders for</param>
326 /// <returns>A list of inventory folders</returns>
327 protected List<InventoryFolderBase> getFolderHierarchy(LLUUID parentID)
328 { 324 {
329 List<InventoryFolderBase> folders = new List<InventoryFolderBase>(); 325 List<InventoryFolderBase> folders = new List<InventoryFolderBase>();
330 getInventoryFolders(ref folders, Util.ToRawUuidString(parentID)); 326 getInventoryFolders(ref folders, Util.ToRawUuidString(parentID));