diff options
author | Melanie Thielker | 2010-05-03 23:53:49 +0200 |
---|---|---|
committer | Melanie Thielker | 2010-05-03 23:53:49 +0200 |
commit | deaa79ca9e91e3c4d027561647669287a39ceacd (patch) | |
tree | 519304732fb4be7c578313030601c92135954778 /OpenSim | |
parent | Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff) | |
download | opensim-SC_OLD-deaa79ca9e91e3c4d027561647669287a39ceacd.zip opensim-SC_OLD-deaa79ca9e91e3c4d027561647669287a39ceacd.tar.gz opensim-SC_OLD-deaa79ca9e91e3c4d027561647669287a39ceacd.tar.bz2 opensim-SC_OLD-deaa79ca9e91e3c4d027561647669287a39ceacd.tar.xz |
Refix the fix
Diffstat (limited to 'OpenSim')
-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)) |