~ubuntu-it-www/ubuntu-it-www/www-repo

« back to all changes in this revision

Viewing changes to www/includes/install.inc

  • Committer: Mattia Rizzolo
  • Date: 2019-03-01 16:08:05 UTC
  • Revision ID: mattia@debian.org-20190301160805-7dwypw2nfcbll59s
Update drupal core to version 7.64

Show diffs side-by-side

added added

removed removed

Lines of Context:
779
779
    $module_list = array_flip(array_values($module_list));
780
780
 
781
781
    $profile = drupal_get_profile();
782
 
    while (list($module) = each($module_list)) {
 
782
    foreach (array_keys($module_list) as $module) {
783
783
      if (!isset($module_data[$module]) || drupal_get_installed_schema_version($module) == SCHEMA_UNINSTALLED) {
784
784
        // This module doesn't exist or is already uninstalled. Skip it.
785
785
        unset($module_list[$module]);