You are here

function user_variable_cron in User variable 6

Same name and namespace in other branches
  1. 7 user_variable.module \user_variable_cron()

Implementation of hook_cron().

File

./user_variable.module, line 229
User variable - Creating and working with user variables.

Code

function user_variable_cron() {
  db_query("DELETE FROM {user_variable} WHERE expired < %d AND expired <> 0", time());
}