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 22:08:12 +0400
committerFabian Becker <halfdan@xnorfz.de>2013-06-24 22:08:12 +0400
commit7cf7bbfec4afe5ddb9416bad190edc1c5234c6f6 (patch)
tree858ce935fb688bfee5a4cdaa4cac74be7b5455ea /plugins/Actions/templates
parentd06dc95677fb2f940b94a5b21e459c0449f92de3 (diff)
Revert "See the branch 2.x-twig for list of commits on twig... Kuddos @halfdan for your work!"
This reverts commit c263308d8229735c04b7aeacf4c224f0a5b866d2.
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>