core/modules/views/src/Plugin/views/style/Rss.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/modules/views/src/Plugin/views/style/Rss.php b/core/modules/views/src/Plugin/views/style/Rss.php index 366deae..88c6e46 100644 --- a/core/modules/views/src/Plugin/views/style/Rss.php +++ b/core/modules/views/src/Plugin/views/style/Rss.php @@ -49,6 +49,7 @@ public function attachTo(array &$build, $display_id, $path, $title) { } } else { + // Add the RSS icon to the view. $feed_icon = array( '#theme' => 'feed_icon', '#url' => $url, @@ -56,7 +57,7 @@ public function attachTo(array &$build, $display_id, $path, $title) { ); $this->view->feed_icon = $feed_icon; - // Add the RSS icon to the view. + // Attach a link to the RSS feed, which is an alternate representation. $build['#attached']['html_head_link'][][] = array( 'rel' => 'alternate', 'type' => 'application/rss+xml',