Skip to content

Commit

Permalink
Fix #6518
Browse files Browse the repository at this point in the history
  • Loading branch information
aembler committed May 18, 2018
1 parent 223a731 commit 177429e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions concrete/src/User/UserInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ public function delete()
}

$r = $this->connection->executeQuery('DELETE FROM OauthUserMap WHERE user_id = ?', [(int) $this->getUserID()]);
$r = $this->connection->executeQuery('DELETE FROM Logs WHERE uID = ?', [(int) $this->getUserID()]);
$r = $this->connection->executeQuery('DELETE FROM UserSearchIndexAttributes WHERE uID = ?', [(int) $this->getUserID()]);
$r = $this->connection->executeQuery('DELETE FROM UserGroups WHERE uID = ?', [(int) $this->getUserID()]);
$r = $this->connection->executeQuery('DELETE FROM UserValidationHashes WHERE uID = ?', [(int) $this->getUserID()]);
Expand Down

0 comments on commit 177429e

Please sign in to comment.