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:
authordiosmosis <diosmosis@users.noreply.github.com>2018-10-11 23:02:44 +0300
committerGitHub <noreply@github.com>2018-10-11 23:02:44 +0300
commitcdbf944146cea42a4725eb9fa814c51c7b32b17b (patch)
treef52355de561266281f8b9b6db5dd9e04f66f3286 /plugins/UsersManager/templates/index.twig
parent221a25f83989df5ea155fd2af6086bb48b280f28 (diff)
Tweaks to escaping strategy in a couple places (#13500)
* Use correct filter in certain places in twig templates. * Another filter change. * Reverse encoding strategy in site selector. * Tweak to annotation escaping. * Fix couple more double encoding issues. * encode report name on unsubscription page * Escape site name in quickaccess directive.
Diffstat (limited to 'plugins/UsersManager/templates/index.twig')
-rw-r--r--plugins/UsersManager/templates/index.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UsersManager/templates/index.twig b/plugins/UsersManager/templates/index.twig
index ca58a66426..82237074a1 100644
--- a/plugins/UsersManager/templates/index.twig
+++ b/plugins/UsersManager/templates/index.twig
@@ -6,7 +6,7 @@
<piwik-users-manager
initial-site-id="{{ idSiteSelected }}"
- initial-site-name="{{ defaultReportSiteName }}"
+ initial-site-name="{{ defaultReportSiteName|rawSafeDecoded }}"
current-user-role="'{{ currentUserRole }}'"
access-levels="{{ accessLevels|json_encode|e('html_attr') }}"
filter-access-levels="{{ filterAccessLevels|json_encode|e('html_attr') }}"