diff --git a/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php b/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php index 36e1e50..f910601 100644 --- a/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php +++ b/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php @@ -708,8 +708,8 @@ public function buildOverviewForm(array $form, FormStateInterface $form_state) { if ($date_performed = $this->state->get('migrate_drupal_ui.performed')) { $form['upgrade_option_item'] = [ '#type' => 'item', - '#prefix' => '

' . $this->t('An upgrade has already been performed on this site.') . '

', - '#description' => '

' . $this->t('Last upgrade: @date', ['@date' => $this->dateFormatter->format($date_performed)]) . '

', + '#prefix' => $this->t('

An upgrade has already been performed on this site.

'), + '#description' => $this->t('

Last upgrade: @date

', ['@date' => $this->dateFormatter->format($date_performed)]), ]; $form['upgrade_option'] = array( '#type' => 'radios', @@ -1219,7 +1219,7 @@ public function getCancelUrl() { * {@inheritdoc} */ public function getDescription() { - return '

' . $this->t('Upgrade analysis report') . '

'; + return $this->t('

Upgrade analysis report

'); } /**