From 6cf2b37e90d4497b960e9bbe4e1cb4530f983417 Mon Sep 17 00:00:00 2001 From: webchick Date: Wed, 26 Mar 2014 22:26:51 -0700 Subject: [PATCH] Issue #2225649 by jjcarrion, LewisNyman: Action links on /admin/config/services/aggregator are inside of an tag. --- core/modules/aggregator/aggregator.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/aggregator/aggregator.module b/core/modules/aggregator/aggregator.module index 0bbbf28cfe1e..69b018d80d70 100644 --- a/core/modules/aggregator/aggregator.module +++ b/core/modules/aggregator/aggregator.module @@ -37,7 +37,7 @@ function aggregator_help($path, $arg) { case 'admin/config/services/aggregator': // Don't use placeholders for possibility to change URLs for translators. $output = '

' . t('Thousands of sites (particularly news sites and blogs) publish their latest headlines and posts in feeds, using a number of standardized XML-based formats. Formats supported by the aggregator include RSS, RDF, and Atom.') . '

'; - $output .= '

' . t('Current feeds are listed below, and new feeds may be added. At the blocks administration page you can enable for each feed the block Aggregator feed that contains the latest items .', array('!addfeed' => \Drupal::url('aggregator.feed_add'), '!block' => \Drupal::url('block.admin_display'))) . '

'; + $output .= '

' . t('Current feeds are listed below, and new feeds may be added. At the blocks administration page you can enable for each feed the block Aggregator feed that contains the latest items .', array('!addfeed' => \Drupal::url('aggregator.feed_add'), '!block' => \Drupal::url('block.admin_display'))) . '

'; return $output; case 'aggregator/sources/add': return '

' . t('Add a feed in RSS, RDF or Atom format. A feed may only have one entry.') . '

';