Issue #1873574 by David_Rothstein: Fixed Cron URL on status report page is no longer an absolute URL.

8.0.x
webchick 2013-01-16 21:09:51 -08:00
parent d9e12a26cc
commit 3422b7b5d0
1 changed files with 1 additions and 1 deletions

View File

@ -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'),