2015-02-28, 18:51:35
(2015-02-28, 09:35:10)dikkewalter Wrote: the plugin is awesome for news item search but I get &-sign displayed as & in the search results and in the little example text under it. Any chance of a quick fix on this?
Not sure if it's the proper solution, but it seems to work:
Edit i18n_search_news.php,
1. find this:
Code:
case 'title': return $this->data['title'];
Code:
case 'title': return strip_decode($this->data['title']);
2. find this:
Code:
case 'content': return '<p>' . htmlspecialchars($this->data['description']) . '</p>';
Code:
case 'content': return '<p>' . $this->data['description'] . '</p>';