diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-04-26 14:33:54 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-04-26 14:33:54 +0000 |
commit | bdffe48163b243a99618de4d4e40027642c5fcbf (patch) | |
tree | 818f4c1b1bac31a1b63ceab92119c559936cfbd0 /modules/system/system.api.php | |
parent | 9f70b717e56c8bc816dd5119e2830d668037d5cc (diff) | |
download | brdo-bdffe48163b243a99618de4d4e40027642c5fcbf.tar.gz brdo-bdffe48163b243a99618de4d4e40027642c5fcbf.tar.bz2 |
- Patch #781822 by mr.baileys: reference to non-existing drupal_run_cron().
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index dfbef6106..bad1934ae 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -399,13 +399,14 @@ function hook_cron_queue_info() { /** * Alter cron queue information before cron runs. * - * Called by drupal_run_cron() to allow modules to alter cron queue settings + * Called by drupal_cron_run() to allow modules to alter cron queue settings * before any jobs are processesed. * * @param array $queues * An array of cron queue information. * * @see hook_cron_queue_info() + * @see drupal_cron_run() */ function hook_cron_queue_info_alter(&$queues) { // This site has many feeds so let's spend 90 seconds on each cron run @@ -3296,7 +3297,7 @@ function hook_countries_alter(&$countries) { * backend to download new versions of modules and themes from drupal.org. * * @return - * An associative array of information about the file transfer backend(s). + * An associative array of information about the file transfer backend(s). * being provided. This array can contain the following keys: * - title: Title of the backend to be shown to the end user. * - class: Name of the PHP class which implements this backend. |