function node_cron in Drupal 4
Same name and namespace in other branches
- 8 core/modules/node/node.module \node_cron()
- 5 modules/node/node.module \node_cron()
- 6 modules/node/node.module \node_cron()
- 7 modules/node/node.module \node_cron()
- 9 core/modules/node/node.module \node_cron()
Implementation of hook_cron().
File
- modules/
node.module, line 57 - The core that allows content to be submitted to the site.
Code
function node_cron() {
db_query('DELETE FROM {history} WHERE timestamp < %d', NODE_NEW_LIMIT);
}