Skip to content
Snippets Groups Projects
Commit 08517822 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1117780 by naxoc, amontero, ogi: Display cron url in admin/config/system/cron page.

parent 09c541a2
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -1512,6 +1512,10 @@ function system_cron_settings($form, &$form_state) {
'#markup' => $status,
);
$form['cron_url'] = array(
'#markup' => '<p>' . t('To run cron from outside the site, go to <a href="!cron">!cron</a>', array('!cron' => url('cron/' . state()->get('system.cron_key'), array('absolute' => TRUE)))) . '</p>',
);
$form['cron'] = array(
'#type' => 'fieldset',
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment