You are here

function security_questions_cron in Security Questions 6.2

Same name and namespace in other branches
  1. 7.2 security_questions.module \security_questions_cron()

Implements hook_cron().

File

./security_questions.module, line 937
Main module file for security_questions.

Code

function security_questions_cron() {

  // Delete all expired records from the incorrect answer attempt list.
  db_query("DELETE FROM {security_questions_incorrect} WHERE expiration < %d", time());
}