cybz - 2008-11-10 21:40:24
Line 179 of the class file:
$db->sql_query("UPDATE ".USERS_TABLE." SET ".substr($sql, 2))." WHERE user_id = '".$phpbb_vars["user_id"]."'";
replace by
$db->sql_query("UPDATE ".USERS_TABLE." SET ".substr($sql, 2)." WHERE user_id = '".$phpbb_vars["user_id"]."'");
Or else when you update a user, or add a user, which calls the update function, it will update all members in the table.