Skip to content
Snippets Groups Projects
Commit 329d8040 authored by Jakob Sack's avatar Jakob Sack
Browse files

Hotfix: deleting users is working again

parent a1ff9912
Branches
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ class OC_USER_DATABASE extends OC_USER_BACKEND {
*/
public static function deleteUser( $uid ){
// Delete user-group-relation
$query = OC_DB::prepare( "DELETE FROM `*PREFIX*group_user` WHERE uid = ?" );
$query = OC_DB::prepare( "DELETE FROM `*PREFIX*users` WHERE uid = ?" );
$result = $query->execute( array( $uid ));
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment