function statistics_update_index in Drupal 7
Implements hook_update_index().
File
- modules/
statistics/ statistics.module, line 460 - Logs and displays access statistics for a site.
Code
function statistics_update_index() {
variable_set('node_cron_views_scale', 1.0 / max(1, db_query('SELECT MAX(totalcount) FROM {node_counter}')
->fetchField()));
}