function openid_cron

7.x openid.module openid_cron()
6.x openid.module openid_cron()

Remove expired nonces from the database.

Implementation of hook_cron().

File

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

Code

function openid_cron() {
  db_query("DELETE FROM {openid_nonce} WHERE expires < %d", time());
}