summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2013-12-25 15:12:01 -0500
committerDavid Rothstein <drothstein@gmail.com>2013-12-25 15:12:01 -0500
commit7b029aca04e5834209ee4c073e4eb6cf971b66c1 (patch)
treeda0f0cff983ed52d7a04a8d93d6a0a6776e7a22c /modules/system
parent335b2dada64cfc16aea50fd360cbe61ad26d9d12 (diff)
downloadbrdo-7b029aca04e5834209ee4c073e4eb6cf971b66c1.tar.gz
brdo-7b029aca04e5834209ee4c073e4eb6cf971b66c1.tar.bz2
Issue #1679660 by rhm50, amontero, billk2, valthebald | bagvendt: Add link to cron tutorial on drupal.org.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.admin.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 05543be6a..72eff86f6 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1618,6 +1618,7 @@ function system_cron_settings() {
$form['cron']['cron_safe_threshold'] = array(
'#type' => 'select',
'#title' => t('Run cron every'),
+ '#description' => t('More information about setting up scheduled tasks can be found by <a href="@url">reading the cron tutorial on drupal.org</a>.', array('@url' => url('http://drupal.org/cron'))),
'#default_value' => variable_get('cron_safe_threshold', DRUPAL_CRON_DEFAULT_THRESHOLD),
'#options' => array(0 => t('Never')) + drupal_map_assoc(array(3600, 10800, 21600, 43200, 86400, 604800), 'format_interval'),
);