function openid_cron

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/openid/openid.module \openid_cron()

Remove expired nonces from the database.

Implements hook_cron().

Archivo

drupal-7.x/modules/openid/openid.module, line 1029
Implement OpenID Relying Party support for Drupal

Código

function openid_cron() {
  db_delete('openid_nonce')->condition('expires', REQUEST_TIME, '<')->execute();
}