Issue #1873574 by David_Rothstein: Fixed Cron URL on status report page is no longer an absolute URL.
parent
d9e12a26cc
commit
3422b7b5d0
|
@ -294,7 +294,7 @@ function system_requirements($phase) {
|
|||
}
|
||||
|
||||
$description .= ' ' . $t('You can <a href="@cron">run cron manually</a>.', array('@cron' => url('admin/reports/status/run-cron')));
|
||||
$description .= '<br />' . $t('To run cron from outside the site, go to <a href="!cron">!cron</a>', array('!cron' => url('cron/' . state()->get('system.cron_key'))));
|
||||
$description .= '<br />' . $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))));
|
||||
|
||||
$requirements['cron'] = array(
|
||||
'title' => $t('Cron maintenance tasks'),
|
||||
|
|
Loading…
Reference in New Issue