diff options
author | flop25 <flop25@piwigo.org> | 2013-05-06 18:34:56 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2013-05-06 18:34:56 +0000 |
commit | 5a0bd85b80001fb104f9ff419862d00bbe544039 (patch) | |
tree | 6bca87146e3370f81bcea27aba5116be7f9a8f83 /admin/themes/default/template | |
parent | 9547e03a57b98d65402be2998cca9ff863b96f87 (diff) |
bug:2890
for "Manage Permissions" and "Manage the members", don't display the button "apply action" button and style as a button the links
git-svn-id: http://piwigo.org/svn/trunk@22516 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template')
-rw-r--r-- | admin/themes/default/template/group_list.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/themes/default/template/group_list.tpl b/admin/themes/default/template/group_list.tpl index 64a41236a..44c1437c9 100644 --- a/admin/themes/default/template/group_list.tpl +++ b/admin/themes/default/template/group_list.tpl @@ -33,7 +33,7 @@ $(document).ready(function() { $("select[name=selectAction]").change(function () { $("[id^=action_]").hide(); $("#action_"+$(this).prop("value")).show(); - if ($(this).val() != -1) { + if ($(this).val() != -1 && $(this).val() !="manage_pemissions" && $(this).val() !="manage_members" ) { $("#applyActionBlock").show(); } else { |