Skip to content
Snippets Groups Projects
Forked from project / drupal
43950 commits behind the upstream repository.
  • Dries Buytaert's avatar
    336b713a
    · 336b713a
    Dries Buytaert authored
    - A large batch of updates, amongst them a rewritten node system.  More
      information available on the mailing list.
    336b713a
    History
    Dries Buytaert authored
    - A large batch of updates, amongst them a rewritten node system.  More
      information available on the mailing list.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
cron.php 333 B
<?php
// $Id$

include_once "includes/common.inc";

/*
** If not in 'safe mode', increase the maximum execution time:
*/

if (!get_cfg_var("safe_mode")) {
  set_time_limit(180);
}

/*
** Iterate through the modules calling their cron handlers (if any):
*/

foreach (module_list() as $module) {
  module_invoke($module, "cron");
}

?>