diff --git a/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php b/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php index a4f1d4f..7cf4f2f 100644 --- a/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php +++ b/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php @@ -205,7 +205,7 @@ public function buildOverviewForm(array $form, FormStateInterface $form_state) { $form['#title'] = $this->t('Upgrade'); // Add the no upgrade path array to the form state so it can be altered. - $form_state->set('no_upgrade_path', static::$noUpgradePath); + $form_state->set('no_upgrade_path', static::$noUpgradePath); if ($date_performed = $this->state->get('migrate_drupal_ui.performed')) { // @todo Add back support for rollbacks and incremental migrations. diff --git a/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/migration_provider_test.module b/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/migration_provider_test.module index fb2d876..0038375 100644 --- a/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/migration_provider_test.module +++ b/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/migration_provider_test.module @@ -1,12 +1,18 @@ get('no_upgrade_path'); $no_upgrade_path[6][] = 'views_ui'; $no_upgrade_path[7][] = 'views_ui'; $form_state->set('no_upgrade_path', $no_upgrade_path); } -