Links in merged fields are "escaped"

Created on 3 November 2022, over 2 years ago
Updated 26 February 2025, about 1 month ago

Problem/Motivation

If field values contain links, merging rows cause the HTML for those links to be "HTML escaped" (e.g. "<" converted to "&lt;") so that that view renders the source HTML , rather than an active link.

Steps to reproduce

  1. Add a new view of content.
  2. Not that titles are linked, e.g. "Drupal"
  3. Click the "No" after "Merge rows".
  4. Check "Merge rows with the same content in the specified fields".
  5. Choose "Merge values of this field".
  6. Note that title links are now escaped, e.g. "<a href="https://drupal.org">Drupal</a>"
🐛 Bug report
Status

Active

Version

2.3

Component

Miscellaneous

Created by

🇬🇧United Kingdom robbm

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • I was able to resolve the issue with this patch:

    diff --git a/modules/contrib/views_merge_rows/src/HookHandler/ViewsPreRenderHookHandler.php b/modules/contrib/views_merge_rows/src/HookHandler/ViewsPreRenderHookHandler.php
    index 81b963527..b904b6e24 100644
    --- a/modules/contrib/views_merge_rows/src/HookHandler/ViewsPreRenderHookHandler.php
    +++ b/modules/contrib/views_merge_rows/src/HookHandler/ViewsPreRenderHookHandler.php
    @@ -849,7 +849,14 @@ protected function renderMerge(
         }
         unset($iteration, $value_count);
     
    -    $view->style_plugin->setRenderedField(\implode('', $merged_row[$field_name]), $row_index, $field_name);
    +    $html_string = implode('', $merged_row[$field_name]);
    +    $render_data = [
    +      '#markup' => \Drupal\Core\Render\Markup::create($html_string)
    +    ];
    +    $html_string = \Drupal::service('renderer')->render($render_data);
    +
    +
    +    $view->style_plugin->setRenderedField($html_string, $row_index, $field_name);
       }
     
       /**
  • I've also faced the issue and the solution is fixing the error. and created a MR from the given patch as MR is easy to review.
    Thanks

Production build 0.71.5 2024