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-10-07 05:28:10 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-07 05:28:10 +0400
commit1dbdd3dbc6601c75511026ce9f9fcf08a67e5796 (patch)
tree33a550aad48b94139ab72e2eba34be1f3abc9839 /plugins/Annotations/templates
parent9d4e91ee598fa2b19cfc21acac18cb45d8702e39 (diff)
Fix double encode in annotations list
Diffstat (limited to 'plugins/Annotations/templates')
-rwxr-xr-xplugins/Annotations/templates/_annotation.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Annotations/templates/_annotation.twig b/plugins/Annotations/templates/_annotation.twig
index 7af7f9409d..ee2e64046f 100755
--- a/plugins/Annotations/templates/_annotation.twig
+++ b/plugins/Annotations/templates/_annotation.twig
@@ -26,7 +26,7 @@
</div>
{% if annotation.canEditOrDelete %}
<div class="annotation-edit-mode" style="display:none;">
- <input class="annotation-edit" type="text" value="{{ annotation.note|e('html') }}"/>
+ <input class="annotation-edit" type="text" value="{{ annotation.note|raw }}"/>
<br/>
<input class="annotation-save submit" type="button" value="{{ 'General_Save'|translate }}"/>
<input class="annotation-cancel submit" type="button" value="{{ 'General_Cancel'|translate }}"/>