function node_cron

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

Implementation of hook_cron().

Archivo

drupal-6.x/modules/node/node.module, line 120
The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.

Código

function node_cron() {
  db_query('DELETE FROM {history} WHERE timestamp < %d', NODE_NEW_LIMIT);
}