diff options
author | Baker Linden <baker@lindenlab.com> | 2014-02-19 16:06:43 -0800 |
---|---|---|
committer | Baker Linden <baker@lindenlab.com> | 2014-02-19 16:06:43 -0800 |
commit | 37e34f6035edcc2cf1fb941f9c189f8fbd0772ef (patch) | |
tree | 3f04b209374f80e513ea1bbbabe272335fda609b | |
parent | 454c5ed631d15441dd50503ab457688fe0289867 (diff) |
[MAINT-3751] - Can't uncheck Ban ability from role
- Fixed an issue where, once granted the ban ability, it could not become unchecked.
-rwxr-xr-x | indra/newview/llpanelgrouproles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelgrouproles.cpp b/indra/newview/llpanelgrouproles.cpp index adcac17c16..06932a7ec5 100755 --- a/indra/newview/llpanelgrouproles.cpp +++ b/indra/newview/llpanelgrouproles.cpp @@ -2344,7 +2344,7 @@ void LLPanelGroupRolesSubTab::handleActionCheck(LLUICtrl* ctrl, bool force) } else { - current_role_powers |= (GP_ROLE_REMOVE_MEMBER | GP_MEMBER_EJECT); + current_role_powers &= ~GP_GROUP_BAN_ACCESS; } mAllowedActionsList->deleteAllItems(); |