Found whilst debugging. Only verified in 7.x not 8.x yet.

This code from update_fetch_data_batch():

    if ($item = $queue->claimItem()) {
      if (_update_process_fetch_task($item->data)) {
        $context['results']['updated']++;
        $context['message'] = t('Checked available update data for %title.', array('%title' => $item->data['info']['name']));
      }

Outputs "Block" instead of "Drupal" as %title, at least on my site. I guess this is because Block is the alphabetically first sub-module enabled?

The issue is incredibly minor, but it hints at a deeper incorrect assumption about the first found sub-module is "the one" that indicates the human-readable project name.

Comments

joyceg’s picture

Assigned: Unassigned » joyceg
cilefen’s picture

Please check if this is an issue with Drupal 8. If so, it must be fixed there first according to the backport policy. If it is, move it to branch 8.0.x-dev and tag it “Needs backport to D7”.