Commit cbb7c8d0 authored by Aljoša Furlanič's avatar Aljoša Furlanič Committed by Youri van Koppen
Browse files

Issue #3263626 by joco_sp, andreyjan, themodularlab: Fixed missing route error...

Issue #3263626 by joco_sp, andreyjan, themodularlab: Fixed missing route error when installing feeds (occurred for some people).
parent 59ec2962
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ use Drupal\Core\Url;
function feeds_install() {
  $messenger = \Drupal::messenger();
  $messenger->addStatus(t('To configure feeds, start by adding a <a href=":feed_type_add_url">feed type</a>. For more information <a target="feeds-guide" href=":guide_url">read the guide</a>.', [
    ':feed_type_add_url' => Url::fromRoute('entity.feeds_feed_type.add_form')->toString(),
    ':feed_type_add_url' => Url::fromUri('internal:/admin/structure/feeds/add')->toString(),
    ':guide_url' => 'https://www.drupal.org/docs/8/modules/feeds/creating-and-editing-import-feeds',
  ]));
}