Skip to content
Snippets Groups Projects
Select Git revision
  • 2edb978db35e3840a77b28f75abb666f0228870f
  • 11.x default protected
  • 11.3.x protected
  • 11.2.x protected
  • 10.6.x protected
  • 10.4.x protected
  • 10.5.x protected
  • 11.1.x protected
  • 11.0.x protected
  • 10.3.x protected
  • 7.x protected
  • 10.2.x protected
  • 10.1.x protected
  • 9.5.x protected
  • 10.0.x protected
  • 9.4.x protected
  • 9.3.x protected
  • 9.2.x protected
  • 9.1.x protected
  • 8.9.x protected
  • 9.0.x protected
  • 10.4.9 protected
  • 10.5.6 protected
  • 11.2.8 protected
  • 11.1.9 protected
  • 11.2.7 protected
  • 11.3.0-alpha1 protected
  • 10.5.5 protected
  • 11.2.6 protected
  • 10.5.4 protected
  • 11.2.5 protected
  • 10.5.3 protected
  • 11.2.4 protected
  • 10.5.2 protected
  • 11.2.3 protected
  • 10.5.1 protected
  • 11.2.2 protected
  • 11.2.1 protected
  • 11.2.0 protected
  • 10.5.0 protected
  • 11.2.0-rc2 protected
41 results

cron.php

Blame
  • Dries Buytaert's avatar
    Dries Buytaert authored
    - Made cron.php add a watchdog entry upon completion.
    6db29f35
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    cron.php 377 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(240);
    }
    
    /*
    ** Iterate through the modules calling their cron handlers (if any):
    */
    
    foreach (module_list() as $module) {
      module_invoke($module, "cron");
    }
    
    watchdog("message", "cron run completed");
    ?>