function flood_clear_event

Makes the flood control mechanism forget an event for the current visitor.

Parameters

$name: The name of an event.

$identifier: Optional identifier (defaults to the current user's IP address).

1 call to flood_clear_event()
user_login_final_validate in drupal/modules/user/user.module
The final validation handler on the login form.

File

drupal/includes/common.inc, line 1316
Common functions that many Drupal modules will need to reference.

Code

function flood_clear_event($name, $identifier = NULL) {
  if (!isset($identifier)) {
    $identifier = ip_address();
  }
  db_delete('flood')
    ->condition('event', $name)
    ->condition('identifier', $identifier)
    ->execute();
}