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:
authorThomas Steur <thomas.steur@gmail.com>2015-12-11 06:21:59 +0300
committermattab <matthieu.aubry@gmail.com>2015-12-21 12:11:33 +0300
commitcc775ad720e75e8042e29e5fef12f2ebfa21a7be (patch)
tree799969a3afa5f55169dac8a87705e2d896cd77d3 /plugins/UsersManager/templates/index.twig
parent69bc09673c96ac6317df541df12e86584aaa1761 (diff)
added tests for all websites
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 9ce934ec18..be07ac9381 100644
--- a/plugins/UsersManager/templates/index.twig
+++ b/plugins/UsersManager/templates/index.twig
@@ -55,7 +55,7 @@
{% set accesInvalid %}<img src='plugins/UsersManager/images/no-access.png' class='updateAccess' />{% endset %}
{% set superUserAccess %}<span title="{{ 'UsersManager_ExceptionSuperUserAccess'|translate }}">N/A</span>{% endset %}
{% for login,access in usersAccessByWebsite %}
- {% if userIsSuperUser or (hasOnlyAdminAccess and access!='noaccess') %}
+ {% if userIsSuperUser or (hasOnlyAdminAccess and (access!='noaccess' or idSiteSelected == 'all')) %}
<tr>
<td id='login'>{{ login }}</td>
<td>{{ usersAliasByLogin[login]|raw }}</td>