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-24 13:47:59 +0400
committermattab <matthieu.aubry@gmail.com>2013-06-24 13:47:59 +0400
commitc263308d8229735c04b7aeacf4c224f0a5b866d2 (patch)
treee0df779805527709f86f682eaf8b70f23218243a /plugins/VisitTime
parent0b83450ed5b8d6f278f4266347e2ab9736c62bd1 (diff)
See the branch 2.x-twig for list of commits on twig... Kuddos @halfdan for your work!
Here are some updates: * Removing |raw from the codebase. * Disabling autoescape by default (in Twig_Environment constructor: 'autoescape' => false ) * Adding |e('html') where html entities are needed * Fixing parse error in goals
Diffstat (limited to 'plugins/VisitTime')
-rw-r--r--plugins/VisitTime/templates/index.twig4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/VisitTime/templates/index.twig b/plugins/VisitTime/templates/index.twig
index bb41160beb..b463ec6e1f 100644
--- a/plugins/VisitTime/templates/index.twig
+++ b/plugins/VisitTime/templates/index.twig
@@ -1,9 +1,9 @@
<div id='leftcolumn'>
<h2>{{ 'VisitTime_LocalTime'|translate }}</h2>
- {{ dataTableVisitInformationPerLocalTime|raw }}
+ {{ dataTableVisitInformationPerLocalTime }}
</div>
<div id='rightcolumn'>
<h2>{{ 'VisitTime_ServerTime'|translate }}</h2>
- {{ dataTableVisitInformationPerServerTime|raw }}
+ {{ dataTableVisitInformationPerServerTime }}
</div>