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:
authormattab <matthieu.aubry@gmail.com>2013-06-26 06:43:31 +0400
committermattab <matthieu.aubry@gmail.com>2013-06-26 06:43:31 +0400
commitb8b026929d71b18b84801790169b45b5692b2d6d (patch)
tree62486f07ea4b854ef3e1e362948d74d77cdc6e12 /plugins/Annotations/templates
parentef0b94b2bc23305893441a9b99390b22a75a9e0d (diff)
* Some more fixes
Refs #4019
Diffstat (limited to 'plugins/Annotations/templates')
-rwxr-xr-xplugins/Annotations/templates/getEvolutionIcons.twig3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Annotations/templates/getEvolutionIcons.twig b/plugins/Annotations/templates/getEvolutionIcons.twig
index f2475c2416..705738845d 100755
--- a/plugins/Annotations/templates/getEvolutionIcons.twig
+++ b/plugins/Annotations/templates/getEvolutionIcons.twig
@@ -4,7 +4,8 @@
{% set counts=dateCountPair[1] %}
<span data-date="{{ date }}" data-count="{{ counts.count }}" data-starred="{{ counts.starred }}"
{% if counts.count == 0 %}title="{{ 'Annotations_AddAnnotationsFor_js'|translate(date) }}"
- {% elseif counts.count == 1 %}title="{{ 'Annotations_AnnotationOnDate'|translate(date,counts.note) }}{{ 'Annotations_ClickToEditOrAdd'|translate }}"
+ {% elseif counts.count == 1 %}title="{{ 'Annotations_AnnotationOnDate'|translate(date,
+ counts.note)|raw }}{{ 'Annotations_ClickToEditOrAdd'|translate }}"
{% else %}}title="{{ 'Annotations_ViewAndAddAnnotations_js'|translate(date) }}"{% endif %}>
<img src="plugins/Zeitgeist/images/{% if counts.starred > 0 %}yellow_marker.png{% else %}grey_marker.png{% endif %}" width="16" height="16"/>
</span>