function openid_cron

Remove expired nonces from the database.

Implements hook_cron().

File

modules/openid/openid.module, line 1036

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.