Switched everything to XInventory by default. The old Inventory is still there for now, in case bugs pop up with XInventory.

This commit is contained in:
Diva Canto
2010-05-02 10:31:35 -07:00
parent 648999dd3b
commit bd49985afa
11 changed files with 100 additions and 106 deletions

View File

@@ -49,7 +49,7 @@ namespace OpenSim.Data.SQLite
public SQLiteXInventoryData(string conn, string realm)
{
m_Folders = new SQLiteGenericTableHandler<XInventoryFolder>(
conn, "inventoryfolders", "InventoryStore");
conn, "inventoryfolders", "XInventoryStore");
m_Items = new SqliteItemHandler(
conn, "inventoryitems", String.Empty);
}