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:
authorZoltan Flamis <zoltan@innocraft.com>2021-04-19 02:41:16 +0300
committerGitHub <noreply@github.com>2021-04-19 02:41:16 +0300
commit3969bb967fb6c82196394bbf0320a5c8a4f71ff7 (patch)
tree678a47612df80dfdf3e222cb44805cc4d42d152d /plugins/Live
parent7b1b36c46559ee71c144152a0d95cd41e162e1dc (diff)
avoid double encoding (#17470)
Diffstat (limited to 'plugins/Live')
-rw-r--r--plugins/Live/templates/getLastVisitsStart.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Live/templates/getLastVisitsStart.twig b/plugins/Live/templates/getLastVisitsStart.twig
index a1b9c1f590..007210b6ee 100644
--- a/plugins/Live/templates/getLastVisitsStart.twig
+++ b/plugins/Live/templates/getLastVisitsStart.twig
@@ -80,7 +80,7 @@
{% set title %}
{% if action.url|trim is not empty %}<span class='tooltip-action-url'>{{ action.url }}</span>{% endif %}
-{% if action.pageTitle is not empty %}<span class='tooltip-action-page-title'>{{ action.pageTitle }}</span>{% endif %}
+{% if action.pageTitle is not empty %}<span class='tooltip-action-page-title'>{{ action.pageTitle|raw }}</span>{% endif %}
<span class="tooltip-action-server-time">{{ action.serverTimePretty }}</span>
{% if action.timeSpentPretty is defined %}<span class='tooltip-time-on-page'>{{ 'General_TimeOnPage'|translate }}: {{ action.timeSpentPretty|raw }}</span>{% endif %}