aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLXInventoryData.cs
diff options
context:
space:
mode:
authorMelanie Thielker2010-05-03 23:53:49 +0200
committerMelanie2010-05-03 23:11:48 +0100
commit23d7a942ea88c597768430c09f7ff42331ac9c96 (patch)
tree0aedbee380999b155f49d91c74a739dab8d25b60 /OpenSim/Data/MySQL/MySQLXInventoryData.cs
parentAdd folder version incrementing to XInventoryService. Fixes offline give (diff)
downloadopensim-SC_OLD-23d7a942ea88c597768430c09f7ff42331ac9c96.zip
opensim-SC_OLD-23d7a942ea88c597768430c09f7ff42331ac9c96.tar.gz
opensim-SC_OLD-23d7a942ea88c597768430c09f7ff42331ac9c96.tar.bz2
opensim-SC_OLD-23d7a942ea88c597768430c09f7ff42331ac9c96.tar.xz
Refix the fix
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLXInventoryData.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLXInventoryData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLXInventoryData.cs b/OpenSim/Data/MySQL/MySQLXInventoryData.cs
index a3b728b..0fe801d 100644
--- a/OpenSim/Data/MySQL/MySQLXInventoryData.cs
+++ b/OpenSim/Data/MySQL/MySQLXInventoryData.cs
@@ -163,7 +163,7 @@ namespace OpenSim.Data.MySQL
163 163
164 public override bool Store(XInventoryItem item) 164 public override bool Store(XInventoryItem item)
165 { 165 {
166 if (base.Store(item)) 166 if (!base.Store(item))
167 return false; 167 return false;
168 168
169 using (MySqlConnection dbcon = new MySqlConnection(m_connectionString)) 169 using (MySqlConnection dbcon = new MySqlConnection(m_connectionString))