function poll_user_predelete

Implements hook_user_predelete().

File

drupal/core/modules/poll/poll.module, line 1025
Collects votes on different topics in the form of multiple choice questions.

Code

function poll_user_predelete($account) {
  db_delete('poll_vote')
    ->condition('uid', $account->uid)
    ->execute();
}