diff -u b/core/modules/system/system.install b/core/modules/system/system.install --- b/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -440,17 +440,22 @@ 'value' => $summary, ); if ($severity != REQUIREMENT_INFO) { - $requirements['cron']['description'][] = ['#markup' => t('Cron has not run recently.')]; + $requirements['cron']['description'][] = ['#markup' => t('Cron has not run recently.'), '#weight' => 0]; $requirements['cron']['description'][] = [ '#prefix' => ' ', '#markup' => t('For more information, see the online handbook entry for configuring cron jobs.', ['@cron-handbook' => 'https://www.drupal.org/cron']), '#suffix' => ' ', + '#weight' => 1, ]; } - $requirements['cron']['description'][] = ['#markup' => t('You can run cron manually.', ['@cron' => \Drupal::url('system.run_cron')])]; + $requirements['cron']['description'][] = [ + '#markup' => t('You can run cron manually.', ['@cron' => \Drupal::url('system.run_cron')]), + '#weight' => 2 + ]; $requirements['cron']['description'][] = [ '#prefix' => '
', '#markup' => t('To run cron from outside the site, go to @cron', ['@cron' => \Drupal::url('system.cron', ['key' => \Drupal::state()->get('system.cron_key'), ['absolute' => TRUE]])]), + '#weight' => 3 ]; } if ($phase != 'install') {