summaryrefslogtreecommitdiff
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
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.
-rw-r--r--CHANGELOG.txt2
-rw-r--r--modules/system/system.admin.inc1
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index f7e7a739d..8a9c8962b 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,6 +1,8 @@
Drupal 7.25, xxxx-xx-xx (development version)
-----------------------
+- Added a link to the drupal.org documentation page for cron to the Cron
+ settings page (string change).
- Added a 'drupal_anonymous_user_object' variable to allow the anonymous user
object returned by drupal_anonymous_user() to be overridden with a classed
object (API addition).
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'),
);