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
$help=$t('Please check the help pages for <a href="@url">configuring cron jobs</a> or you can <a href="@cron">run cron manually</a>.',array('@url'=>'http://drupal.org/cron','@cron'=>url('admin/reports/status/run-cron')));
$help=$t('Please check the help pages for <a href="@url">configuring cron jobs</a>.',array('@url'=>'http://drupal.org/cron'));
// Determine when cron last ran. If never, use the install time to
// determine the warning or error status.
...
...
@@ -112,7 +112,7 @@ function system_requirements($phase) {
drupal_set_message($t('Cron has not run.').' '.$help);
drupal_set_message($t('Cron has not run. Please visit the <a href="@status">status report</a> for more information.',array('@status'=>url('admin/reports/status'))));
}
// Set summary and description based on values determined above.
...
...
@@ -140,7 +140,7 @@ function system_requirements($phase) {
'title'=>$t('Cron maintenance tasks'),
'severity'=>$severity,
'value'=>$summary,
'description'=>$description,
'description'=>$description.' '.$t('You can <a href="@cron">run cron manually</a>.',array('@cron'=>url('admin/reports/status/run-cron'))),