Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Becker <halfdan@xnorfz.de>2013-06-24 02:40:44 +0400
committerFabian Becker <halfdan@xnorfz.de>2013-06-24 02:40:44 +0400
commit2488c54db91c9cd45a5e01ab410589378102de1f (patch)
tree21791aa81f3c0eb71220ba96a15e35769ad72abf /plugins/Actions/templates
parentf6cb651dedfef9e8e27c2c60c8cd90c8dffd2c74 (diff)
Fix raw datatables
Diffstat (limited to 'plugins/Actions/templates')
-rw-r--r--plugins/Actions/templates/indexSiteSearch.twig8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Actions/templates/indexSiteSearch.twig b/plugins/Actions/templates/indexSiteSearch.twig
index d541b9ed62..2b9ea3afbc 100644
--- a/plugins/Actions/templates/indexSiteSearch.twig
+++ b/plugins/Actions/templates/indexSiteSearch.twig
@@ -1,17 +1,17 @@
<div id='leftcolumn'>
<h2>{{ 'Actions_WidgetSearchKeywords'|translate }}</h2>
- {{ keywords }}
+ {{ keywords|raw }}
<h2>{{ 'Actions_WidgetSearchNoResultKeywords'|translate }}</h2>
- {{ noResultKeywords }}
+ {{ noResultKeywords|raw }}
{% if categories is defined %}
<h2>{{ 'Actions_WidgetSearchCategories'|translate }}</h2>
- {{ categories }}
+ {{ categories|raw }}
{% endif %}
</div>
<div id='rightcolumn'>
<h2>{{ 'Actions_WidgetPageUrlsFollowingSearch'|translate }}</h2>
- {{ pagesUrlsFollowingSiteSearch }}
+ {{ pagesUrlsFollowingSiteSearch|raw }}
</div>