From 72b94e4201d7b8642ba8a092dcca62a78a33e372 Mon Sep 17 00:00:00 2001
From: amontero <amontero@166637.no-reply.drupal.org>
Date: Sat, 10 Aug 2013 14:13:30 +0200
Subject: [PATCH] Add link to cron tutorial on drupal.org.

---
 modules/system/system.admin.inc |    1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 05543be..72eff86 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'),
   );
-- 
1.7.9.5

