Indexed Search extbase htmltags in output

extbase, typo3, typo3-7.6.x

Solution

It was another extension who overwrote a Partial of tx_indexedsearch that caused the problem.. -> Always check if the template you are working on is the one that gets outputted ;)

Problem

I am using TYPO3 7.6.11 and indexed_search 7.6.0. I use the extbase plugin for indexed_search and in the output it escapes the HTML-Tags to mark the searchword. For example, when I search for "search" I get this output: ``` Test text with<strong class="tx-indexedsearch-redMarkup">search</strong> pattern. ``` I found this bugfix to this problem: https://forge.typo3.org/issues/77901 But the file `PageBrowsingResultsViewHelper.php` doesn't look exactly the same, and even when I add the variable `protected $escapeOutput = false;` it doesn't change anything. Any idea where this is come from and where I can disable the escaping?

Original source