diff -u b/core/modules/views/src/Plugin/views/row/RssFields.php b/core/modules/views/src/Plugin/views/row/RssFields.php --- b/core/modules/views/src/Plugin/views/row/RssFields.php +++ b/core/modules/views/src/Plugin/views/row/RssFields.php @@ -218,8 +218,8 @@ // The input path is already encoded and starting with $base_path. // Hence decode the link, strip the base path, and encode again in a // way that's guaranteed to be suitable. - // @todo Improve URL conversion in RSS field view. See: - // https://www.drupal.org/node/2430589. + // @todo Improve URL conversion in RSS field view. + // @see https://www.drupal.org/node/2430589 $value = rawurldecode($url_string); if (substr($value, 0, strlen($base_path)) === $base_path) { $value = substr($value, strlen($base_path));