Issue #2913864 by Jo Fitzgerald, chiranjeeb2410, matslats, phenaproxima: badly constructred link in drupal_set_message

8.5.x
Nathaniel Catchpole 2017-12-19 16:39:06 +00:00
parent a44a23e64f
commit dad8d64eed
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ use Drupal\Core\Url;
* Implements hook_install().
*/
function migrate_drupal_ui_install() {
$url = Url::fromUri('base:upgrade')->toString();
$url = Url::fromRoute('migrate_drupal_ui.upgrade')->toString();
drupal_set_message(t('The Migrate Drupal UI module has been enabled. Proceed to the <a href=":url">upgrade form</a>.', [':url' => $url]));
}