diff options
author | Melanie Thielker | 2010-05-03 23:53:49 +0200 |
---|---|---|
committer | Melanie | 2010-05-03 23:11:48 +0100 |
commit | 23d7a942ea88c597768430c09f7ff42331ac9c96 (patch) | |
tree | 0aedbee380999b155f49d91c74a739dab8d25b60 | |
parent | Add folder version incrementing to XInventoryService. Fixes offline give (diff) | |
download | opensim-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
-rw-r--r-- | OpenSim/Data/MySQL/MySQLXInventoryData.cs | 2 |
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)) |