aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie Thielker2010-05-03 23:53:49 +0200
committerMelanie Thielker2010-05-03 23:53:49 +0200
commitdeaa79ca9e91e3c4d027561647669287a39ceacd (patch)
tree519304732fb4be7c578313030601c92135954778
parentMerge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff)
downloadopensim-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
-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))