diff options
author | PixelTomsen | 2012-02-08 21:45:00 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-02-10 02:30:55 +0000 |
commit | 7273e05995671175d5175558ed72dd1cb331cacb (patch) | |
tree | dece0827bac3d628dd9a874f5a9c2dd8de3d20ec /OpenSim/Data/SQLite/SQLiteFriendsData.cs | |
parent | When an asset is uploaded (e.g. a mesh) set individual copy/move/transfer per... (diff) | |
download | opensim-SC_OLD-7273e05995671175d5175558ed72dd1cb331cacb.zip opensim-SC_OLD-7273e05995671175d5175558ed72dd1cb331cacb.tar.gz opensim-SC_OLD-7273e05995671175d5175558ed72dd1cb331cacb.tar.bz2 opensim-SC_OLD-7273e05995671175d5175558ed72dd1cb331cacb.tar.xz |
Fix: Unable to remove AV from friend list (sqldb-bug) http://opensimulator.org/mantis/view.php?id=3731
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteFriendsData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteFriendsData.cs b/OpenSim/Data/SQLite/SQLiteFriendsData.cs index b14c348..5f68977 100644 --- a/OpenSim/Data/SQLite/SQLiteFriendsData.cs +++ b/OpenSim/Data/SQLite/SQLiteFriendsData.cs | |||
@@ -75,7 +75,7 @@ namespace OpenSim.Data.SQLite | |||
75 | cmd.Parameters.AddWithValue(":PrincipalID", principalID.ToString()); | 75 | cmd.Parameters.AddWithValue(":PrincipalID", principalID.ToString()); |
76 | cmd.Parameters.AddWithValue(":Friend", friend); | 76 | cmd.Parameters.AddWithValue(":Friend", friend); |
77 | 77 | ||
78 | ExecuteNonQuery(cmd, cmd.Connection); | 78 | ExecuteNonQuery(cmd, m_Connection); |
79 | 79 | ||
80 | return true; | 80 | return true; |
81 | } | 81 | } |