diff options
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteInventoryStore.cs')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteInventoryStore.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs index e84eed5..d6f41fd 100644 --- a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs +++ b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs | |||
@@ -877,7 +877,7 @@ namespace OpenSim.Data.SQLite | |||
877 | DataTable inventoryItemTable = ds.Tables["inventoryitems"]; | 877 | DataTable inventoryItemTable = ds.Tables["inventoryitems"]; |
878 | string selectExp | 878 | string selectExp |
879 | = "avatarID = '" + avatarID + "' AND assetType = " + (int)AssetType.Gesture + " AND flags = 1"; | 879 | = "avatarID = '" + avatarID + "' AND assetType = " + (int)AssetType.Gesture + " AND flags = 1"; |
880 | m_log.DebugFormat("[SQL]: sql = " + selectExp); | 880 | //m_log.DebugFormat("[SQL]: sql = " + selectExp); |
881 | DataRow[] rows = inventoryItemTable.Select(selectExp); | 881 | DataRow[] rows = inventoryItemTable.Select(selectExp); |
882 | foreach (DataRow row in rows) | 882 | foreach (DataRow row in rows) |
883 | { | 883 | { |