Commit f736faea authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed typo in tble name that was affecting deleting affiliations. JM-1460

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10894 b35dd754-fafc-0310-a699-88a17e54d16e
parent f6dbe58e
...@@ -112,7 +112,7 @@ public class MUCPersistenceManager { ...@@ -112,7 +112,7 @@ public class MUCPersistenceManager {
private static final String DELETE_USER_MEMBER = private static final String DELETE_USER_MEMBER =
"DELETE FROM ofMucMember WHERE jid=?"; "DELETE FROM ofMucMember WHERE jid=?";
private static final String DELETE_USER_MUCAFFILIATION = private static final String DELETE_USER_MUCAFFILIATION =
"DELETE FROM ofMucaffiliation WHERE jid=?"; "DELETE FROM ofMucAffiliation WHERE jid=?";
private static final String ADD_CONVERSATION_LOG = private static final String ADD_CONVERSATION_LOG =
"INSERT INTO ofMucConversationLog (roomID,sender,nickname,logTime,subject,body) " + "INSERT INTO ofMucConversationLog (roomID,sender,nickname,logTime,subject,body) " +
"VALUES (?,?,?,?,?,?)"; "VALUES (?,?,?,?,?,?)";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment