Changeset - 8d652dec72bf
[Not reviewed]
0 1 0
Mads - 12 years ago 2013-03-20 23:53:32
mads@ab3.no
Another typo fix in removeUser
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/pqxxbackend.cpp
Show inline comments
 
@@ -355,7 +355,7 @@ bool PQXXBackend::removeUser(long id) {
 
		pqxx::nontransaction txn(*m_conn);
 
		txn.exec("DELETE FROM " + m_prefix + "users WHERE id=" + pqxx::to_string(id));
 
		txn.exec("DELETE FROM " + m_prefix + "buddies WHERE user_id=" + pqxx::to_string(id));
 
		txn.exec("DELETE FROM " + m_prefix + "user_settings WHERE user_id=" + pqxx::to_string(id));
 
		txn.exec("DELETE FROM " + m_prefix + "users_settings WHERE user_id=" + pqxx::to_string(id));
 
		txn.exec("DELETE FROM " + m_prefix + "buddies_settings WHERE user_id=" + pqxx::to_string(id));
 

	
 
		return true;
0 comments (0 inline, 0 general)