diff --git a/core/modules/system/system.admin.inc b/core/modules/system/system.admin.inc index 6ba04f4105f..3a07fa2fee4 100644 --- a/core/modules/system/system.admin.inc +++ b/core/modules/system/system.admin.inc @@ -1512,6 +1512,10 @@ function system_cron_settings($form, &$form_state) { '#markup' => $status, ); + $form['cron_url'] = array( + '#markup' => '

' . t('To run cron from outside the site, go to !cron', array('!cron' => url('cron/' . state()->get('system.cron_key'), array('absolute' => TRUE)))) . '

', + ); + $form['cron'] = array( '#type' => 'fieldset', );