summaryrefslogtreecommitdiff
path: root/modules/system/system.api.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-04-26 14:33:54 +0000
committerDries Buytaert <dries@buytaert.net>2010-04-26 14:33:54 +0000
commitbdffe48163b243a99618de4d4e40027642c5fcbf (patch)
tree818f4c1b1bac31a1b63ceab92119c559936cfbd0 /modules/system/system.api.php
parent9f70b717e56c8bc816dd5119e2830d668037d5cc (diff)
downloadbrdo-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.php5
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.