diff options
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/install.php b/install.php index cd7ee8d2a..caa5feb3e 100644 --- a/install.php +++ b/install.php @@ -835,6 +835,11 @@ if (Drupal.jsEnabled) { install_task_list($task); variable_set('install_task', $task); + // Run cron to populate update status tables (if available) so that users + // will be warned if they've installed an out of date Drupal version. + // Will also trigger indexing of profile-supplied content or feeds. + drupal_cron_run(); + // Output page, if some output was required. Otherwise it is possible // that we are printing a JSON page and theme output should not be there. if (isset($output)) { |