diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-09-20 22:21:47 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-09-20 22:21:47 +0200 |
commit | f0afccb173fb728b6c70a8bd86c4d8869043581a (patch) | |
tree | a6621ca13c644cacb8e36d449f338ecdcf78756c /phpBB/adm | |
parent | Merge pull request #5666 from mrgoldy/ticket/16084 (diff) | |
parent | [prep-release-3.2.8] Add migration for 3.2.8 (diff) | |
download | phpbb-f0afccb173fb728b6c70a8bd86c4d8869043581a.tar.gz phpbb-f0afccb173fb728b6c70a8bd86c4d8869043581a.tar.bz2 phpbb-f0afccb173fb728b6c70a8bd86c4d8869043581a.zip |
Merge branch 'prep-release-3.2.8' into 3.2.x
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/permission_mask.html | 2 | ||||
-rw-r--r-- | phpBB/adm/style/permissions.js | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/adm/style/permission_mask.html b/phpBB/adm/style/permission_mask.html index c556664b8c..23294d60df 100644 --- a/phpBB/adm/style/permission_mask.html +++ b/phpBB/adm/style/permission_mask.html @@ -9,6 +9,8 @@ var role_options = new Array(); + var no_role_assigned = "{LA_NO_ROLE_ASSIGNED}"; + <!-- IF S_ROLE_JS_ARRAY --> {S_ROLE_JS_ARRAY} <!-- ENDIF --> diff --git a/phpBB/adm/style/permissions.js b/phpBB/adm/style/permissions.js index 9178adab50..af8e21ad51 100644 --- a/phpBB/adm/style/permissions.js +++ b/phpBB/adm/style/permissions.js @@ -279,6 +279,10 @@ function reset_role(id) { } t.options[0].selected = true; + + var parent = t.parentNode; + parent.querySelector('span.dropdown-trigger').innerText = no_role_assigned; + parent.querySelector('input[data-name^=role]').value = '0'; } /** |