function poll_user_cancel

Implements hook_user_cancel().

File

drupal/modules/poll/poll.module, line 978
Enables your site to capture votes on different topics in the form of multiple choice questions.

Code

function poll_user_cancel($edit, $account, $method) {
  switch ($method) {
    case 'user_cancel_reassign':
      db_update('poll_vote')
        ->fields(array(
        'uid' => 0,
      ))
        ->condition('uid', $account->uid)
        ->execute();
      break;
  }
}