function openid_cron

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

Remove expired nonces from the database.

Implementation of hook_cron().

Archivo

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

Código

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