Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Indexed Search extbase htmltags in output

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?

like image 768
nbar Avatar asked May 08 '17 13:05

nbar


1 Answers

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 ;)

like image 191
nbar Avatar answered Nov 12 '22 21:11

nbar