Index: cron.php =================================================================== RCS file: /cvs/drupal/drupal/cron.php,v retrieving revision 1.34 diff -u -p -r1.34 cron.php --- cron.php 31 Dec 2005 14:18:22 -0000 1.34 +++ cron.php 1 Jul 2006 01:17:48 -0000 @@ -16,16 +16,16 @@ if (!ini_get('safe_mode')) { // Check if the last cron run completed if (variable_get('cron_busy', false)) { - watchdog('cron', t('Last cron run did not complete.'), WATCHDOG_WARNING); + watchdog('cron', t('Cron running: ignored attempted re-run.'), WATCHDOG_WARNING); } else { variable_set('cron_busy', true); -} -// Iterate through the modules calling their cron handlers (if any): -module_invoke_all('cron'); + // Iterate through the modules calling their cron handlers (if any): + module_invoke_all('cron'); -// Clean up -variable_set('cron_busy', false); -variable_set('cron_last', time()); -watchdog('cron', t('Cron run completed')); + // Clean up + variable_set('cron_busy', false); + variable_set('cron_last', time()); + watchdog('cron', t('Cron run completed')); +}